12 lines
501 B
C++
12 lines
501 B
C++
#pragma once
|
|
|
|
|
|
void set_property_int(const char* name, const int value);
|
|
void set_property_string(const char* name, const char* value);
|
|
void set_path_string(const char* name, const char* value);
|
|
void set_path_to_path(const char* name, const char* value);
|
|
void new_object_path(const char* name);
|
|
int get_property_int(const char* name);
|
|
void emit_lifee(const char* name);
|
|
void emit_triee(const char* name, const int64_t time, const int command, const int valueWords, uint64_t* aValue, uint64_t* aMask);
|