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,45 @@
#ifndef _SIFFUNC_H_
#define _SIFFUNC_H_
/********************************************************************* */
/** SifLoadS.h: ** */
/** ** */
/** Header file for Public SIF module Script Load functions ** */
/** ** */
/********************************************************************* */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus*/
/****************************************/
#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
/****************************************/
extern CPA_EXPORT BOOL SIF_fn_bInitSoundInfos(void);
extern CPA_EXPORT BOOL SIF_fn_bDesInitSoundInfos(void);
extern CPA_EXPORT int SIF_fn_iGetSoundInfosCount(void);
extern CPA_EXPORT const char *SIF_fn_czGetSoundInfoNameForType(int _iInfoType);
#ifdef __cplusplus
}
#endif /* __cplusplus*/
#endif /*_SIFFUNC_H_*/

View File

@@ -0,0 +1,45 @@
#ifndef _SIFTYPES_H_
#define _SIFTYPES_H_
/********************************************************************* */
/** SifTypes.h: ** */
/** ** */
/** Header file for Public SIF module types ** */
/** ** */
/********************************************************************* */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus*/
/****************************************/
#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 enum _SIF_eInfoTypeId
{
ENVIRONMENT_INFO,
MATERIAL_INFO,
NB_INFO_TYPES,
} SIF_eInfoTypeId;
*/
#ifdef __cplusplus
}
#endif /* __cplusplus*/
#endif /*_SIFTYPES_H_*/