39 lines
870 B
Plaintext
39 lines
870 B
Plaintext
/*------------------------------------------------------------------------------
|
|
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
|
|
|