Add rayman2 source files

This commit is contained in:
2024-09-18 02:33:44 +08:00
parent bcc093f8ed
commit fb036c54fd
14339 changed files with 2596224 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#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();