mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
226aaedc46
minor fixes (arg name in header/cpp the same)
34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
#ifndef IN_PROCESS_EXAMPLE_BROWSER_H
|
|
#define IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
struct btInProcessExampleBrowserInternalData;
|
|
|
|
btInProcessExampleBrowserInternalData* btCreateInProcessExampleBrowser(int argc,char** argv2, bool useInProcessMemory);
|
|
|
|
bool btIsExampleBrowserTerminated(btInProcessExampleBrowserInternalData* data);
|
|
|
|
void btShutDownExampleBrowser(btInProcessExampleBrowserInternalData* data);
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterface(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
///////////////////////
|
|
|
|
|
|
struct btInProcessExampleBrowserMainThreadInternalData;
|
|
|
|
btInProcessExampleBrowserMainThreadInternalData* btCreateInProcessExampleBrowserMainThread(int argc,char** argv, bool useInProcessMemory);
|
|
|
|
bool btIsExampleBrowserMainThreadTerminated(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
void btUpdateInProcessExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
void btShutDownExampleBrowserMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterfaceMainThread(btInProcessExampleBrowserMainThreadInternalData* data);
|
|
|
|
|
|
//////////////////////
|
|
|
|
#endif //IN_PROCESS_EXAMPLE_BROWSER_H
|