blob: 1a96b4531ffdb6ed5d92b796cabb7ab6ee23c7e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|