reman3/Rayman_X/cpa/public/msn/msn_main.h

29 lines
558 B
C

#ifndef U64
#include <windows.h>
/****************************************/
#undef CPA_EXPORT
#if defined(CPA_WANTS_IMPORT)
#define CPA_EXPORT __declspec(dllimport)
#elif defined(CPA_WANTS_EXPORT)
#define CPA_EXPORT __declspec(dllexport)
#else
#define CPA_EXPORT
#endif
/****************************************/
typedef struct MSN_tdstInitParams_
{
HINSTANCE hinst;
} MSN_tdstInitParams;
#else
typedef struct MSN_tdstInitParams_
{
int nothing;
} MSN_tdstInitParams;
#endif
CPA_EXPORT ACP_tdxBool MSN_fn_vInit();
CPA_EXPORT void MSN_fn_vDesInit();