create a C/C++ plugin system for pybullet / C-API.
This commit is contained in:
19
examples/SharedMemory/plugins/testPlugin/testplugin.h
Normal file
19
examples/SharedMemory/plugins/testPlugin/testplugin.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef TEST_PLUGIN_H
|
||||
#define TEST_PLUGIN_H
|
||||
|
||||
#include "../b3PluginAPI.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
B3_SHARED_API int initPlugin();
|
||||
B3_SHARED_API void exitPlugin();
|
||||
B3_SHARED_API int executePluginCommand();
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif//#define TEST_PLUGIN_H
|
||||
Reference in New Issue
Block a user