52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
// EdIR2Eng.hpp : header file
|
|
//
|
|
|
|
#ifndef _EDIR2ENG_HPP_
|
|
#define _EDIR2ENG_HPP_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class CPA_SaveObject;
|
|
class CPA_EdIR_MainBehaviour;
|
|
class CPA_EdIR_DebugInfoList;
|
|
|
|
//ANNECY CB
|
|
//BEGIN ROMTEAM Cristi Petrescu 98-05-
|
|
BOOL fn_bCheckIA(CPA_EdIR_MainBehaviour *,enum tdeTypeText_,CString,long &, CString);
|
|
//END ROMTEAM Cristi Petrescu 98-05-
|
|
//BOOL fn_bCheckIA(enum tdeTypeText_,CString,long &);
|
|
//END
|
|
|
|
//BEGIN ROMTEAM Cristi Petrescu 98-05-
|
|
BOOL fn_bProcessIA(BOOL,CPA_EdIR_MainBehaviour *,BOOL,struct AI_tdstMind_ *,struct tdstComport_ *,struct tdstTreeInterpret_ *,
|
|
enum tdeTypeText_,CString,long &,CPA_EdIR_DebugInfoList *, CString);
|
|
//END ROMTEAM Cristi Petrescu 98-05-
|
|
//BEGIN ROMTEAM Cristi Petrescu 98-04-
|
|
BOOL fn_bSaveIA(struct SCR_tdst_File_Description_ *,struct AI_tdstMind_ *,enum tdeTypeText_,CString,long &, CString, CString);
|
|
//END ROMTEAM Cristi Petrescu 98-04-
|
|
|
|
void fn_vConvertIndexToPointerForModel(struct AI_tdstAIModel_ *);
|
|
void fn_vConvertPointerToIndexForModel(struct AI_tdstAIModel_ *);
|
|
void fn_vConvertIndexToPointerForInstance(struct AI_tdstMind_ *);
|
|
void fn_vConvertPointerToIndexForInstance(struct AI_tdstMind_ *);
|
|
|
|
void fn_vConvertEnginePointerIntoEditorPointer(struct AI_tdstAIModel_ *);
|
|
void fn_vConvertEditorPointerIntoEnginePointer(struct AI_tdstAIModel_ *);
|
|
|
|
//ANNECY CB
|
|
long fn_lGetNbRules(CString&);
|
|
CString fn_csGetCodeWithoutComments(CString&);
|
|
CPA_SaveObject *fn_pclGetReachableObject(long,CString csType="");
|
|
//BEGIN ROMTEAM Cristi Petrescu 98-06-
|
|
void fn_vCreateDsgVarControl(CString&,CString&,long,BOOL,BOOL bUpdate = TRUE);
|
|
//END ROMTEAM Cristi Petrescu 98-06-
|
|
//long fn_lGetNbRules(CString);
|
|
//CString fn_csGetCodeWithoutComments(CString);
|
|
//CPA_SaveObject *fn_pclGetReachableObject(long,CString csType="");
|
|
//void fn_vCreateDsgVarControl(CString,CString,long);
|
|
//END
|
|
|
|
#endif //_EDIR2ENG_HPP_
|