shared data and pass fps to main thread
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include "types.h"
|
||||
|
||||
#ifndef SHARED_H
|
||||
#define SHARED_H
|
||||
|
||||
SharedUint *shared_init_uint(const char *key, unsigned int initial_value);
|
||||
void shared_close_uint(SharedUint *shared);
|
||||
|
||||
SharedBool *shared_init_bool(const char *key, bool initial_value);
|
||||
void shared_close_bool(SharedBool *shared);
|
||||
|
||||
#endif /* SHARED_H */
|
||||
Reference in New Issue
Block a user