2022-05-13 23:42:41 -04:00
|
|
|
#ifndef IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
|
#define IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
|
|
|
|
|
|
struct btInProcessExampleBrowserInternalData;
|
|
|
|
|
|
2026-06-03 15:08:51 +01:00
|
|
|
btInProcessExampleBrowserInternalData* btCreateInProcessExampleBrowser(int argc, char** argv2, bool useInProcessMemory);
|
2022-05-13 23:42:41 -04:00
|
|
|
|
|
|
|
|
bool btIsExampleBrowserTerminated(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
|
|
|
|
void btShutDownExampleBrowser(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterface(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
|
|
|
|
///////////////////////
|
|
|
|
|
|
|
|
|
|
struct btInProcessExampleBrowserMainThreadInternalData;
|
|
|
|
|
|
2026-06-03 15:08:51 +01:00
|
|
|
btInProcessExampleBrowserMainThreadInternalData* btCreateInProcessExampleBrowserMainThread(int argc, char** argv, bool useInProcessMemory);
|
2022-05-13 23:42:41 -04:00
|
|
|
|
|
|
|
|
bool btIsExampleBrowserMainThreadTerminated(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
|
|
void btUpdateInProcessExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
|
|
void btShutDownExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterfaceMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
|
|
|
|
//////////////////////
|
|
|
|
|
|
2026-06-03 15:08:51 +01:00
|
|
|
#endif //IN_PROCESS_EXAMPLE_BROWSER_H
|