mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
17 lines
277 B
C
17 lines
277 B
C
|
#ifndef PHYSICS_CLIENT_SHARED_MEMORY_H
|
||
|
#define PHYSICS_CLIENT_SHARED_MEMORY_H
|
||
|
|
||
|
#include "PhysicsClientC_API.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
b3PhysicsClientHandle b3ConnectSharedMemory(int key);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif //PHYSICS_CLIENT_SHARED_MEMORY_H
|