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,38 @@
/*------------------------------------------------------------------------------
FILE : Register.h
CREATED : 19/05/97
AUTHOR : Catalin Cocos
CONTENTS: callback registering structures & functions
------------------------------------------------------------------------------*/
#ifndef __LDT_REGISTER__
#define __LDT_REGISTER__
#include "Link.h"
#include "Parser.h"
#include "DynArray.h"
/* Constants
--------------*/
#define LDT_REG_SECTION 0 /* registers section callbacks */
#define LDT_REG_FILE 1 /* registers file callbacks */
/* Globals
-------------*/
extern tdst_DSArray g_ArSectionCallbacks; /* the section callbacks */
extern tdst_DSArray g_ArFileCallbacks; /* the file callbacks */
/* Functions
-------------*/
int LDT_Compare_CallbackEntries(const void**, const void** );
LDT_tdst_CallbackEntry* GetType( char* szType, int Mode);
#endif