diff options
Diffstat (limited to 'mayaPlug/libShave.h')
| -rw-r--r-- | mayaPlug/libShave.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mayaPlug/libShave.h b/mayaPlug/libShave.h new file mode 100644 index 0000000..1a96b45 --- /dev/null +++ b/mayaPlug/libShave.h @@ -0,0 +1,22 @@ +#ifndef libShave_h +#define libShave_h +// Shave and a Haircut +// (c) 2019 Epic Games +// US Patent 6720962 + +#ifdef WIN32 +# ifdef LIBSHAVE_EXPORTS +# define LIBSHAVE_API __declspec(dllexport) +# else +# define LIBSHAVE_API __declspec(dllimport) +# endif +#else +# define LIBSHAVE_API +#endif + +#include <maya/MObject.h> + +LIBSHAVE_API MStatus shaveInitializePlugin(MObject obj); +LIBSHAVE_API MStatus shaveUninitializePlugin(MObject obj); + +#endif |