#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 LIBSHAVE_API MStatus shaveInitializePlugin(MObject obj); LIBSHAVE_API MStatus shaveUninitializePlugin(MObject obj); #endif