mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
efbb1edecc
Make shared memory client/server a bit more robust, in case the server is terminated early.
16 lines
518 B
C++
16 lines
518 B
C++
#ifndef IN_PROCESS_EXAMPLE_BROWSER_H
|
|
#define IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
struct btInProcessExampleBrowserInternalData;
|
|
|
|
btInProcessExampleBrowserInternalData* btCreateInProcessExampleBrowser(int argc,char** argv2);
|
|
|
|
bool btIsExampleBrowserTerminated(btInProcessExampleBrowserInternalData* data);
|
|
|
|
void btShutDownExampleBrowser(btInProcessExampleBrowserInternalData* data);
|
|
|
|
class SharedMemoryInterface* btGetSharedMemoryInterface(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
#endif //IN_PROCESS_EXAMPLE_BROWSER_H
|