mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
18 lines
306 B
C++
18 lines
306 B
C++
#ifndef COMMON_PROP_HPP
|
|
#define COMMON_PROP_HPP
|
|
|
|
#include "common/prop/Types.hpp"
|
|
|
|
HPROPCONTEXT PropCreateContext();
|
|
|
|
void* PropGet(PROPERTY id);
|
|
|
|
HPROPCONTEXT PropGetSelectedContext();
|
|
|
|
void PropInitialize();
|
|
|
|
void PropSelectContext(HPROPCONTEXT context);
|
|
|
|
void PropSet(PROPERTY id, void* value);
|
|
|
|
#endif
|