2016-03-03 02:01:33 +00:00
|
|
|
#ifndef IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
#define IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
|
|
|
|
struct btInProcessExampleBrowserInternalData;
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
btInProcessExampleBrowserInternalData* btCreateInProcessExampleBrowser(int argc, char** argv2, bool useInProcessMemory);
|
2016-03-03 02:01:33 +00:00
|
|
|
|
|
|
|
bool btIsExampleBrowserTerminated(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
|
|
void btShutDownExampleBrowser(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
2016-03-10 22:36:46 +00:00
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterface(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
2016-04-14 15:51:20 +00:00
|
|
|
///////////////////////
|
|
|
|
|
|
|
|
struct btInProcessExampleBrowserMainThreadInternalData;
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
btInProcessExampleBrowserMainThreadInternalData* btCreateInProcessExampleBrowserMainThread(int argc, char** argv, bool useInProcessMemory);
|
2016-04-14 15:51:20 +00:00
|
|
|
|
|
|
|
bool btIsExampleBrowserMainThreadTerminated(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
void btUpdateInProcessExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
void btShutDownExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterfaceMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
//////////////////////
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
#endif //IN_PROCESS_EXAMPLE_BROWSER_H
|