25 lines
669 B
C
25 lines
669 B
C
#ifndef __SNAGLOB_H__
|
|
#define __SNAGLOB_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Load mode for engine : script, binary or saving binary */
|
|
#define SNA_LOAD_SCRIPT 0
|
|
#define SNA_LOAD_SNAPSHOT 1
|
|
#define SNA_SAVE_SNAPSHOT 2
|
|
|
|
extern CPA_EXPORT void SNA_fn_vSetLoadType(unsigned char ucType);
|
|
extern CPA_EXPORT unsigned char SNA_fn_ucGetLoadType();
|
|
extern CPA_EXPORT void SNA_fn_vSetLevelName(char *szLevelName);
|
|
extern CPA_EXPORT char *SNA_fn_ucGetLevelName();
|
|
extern CPA_EXPORT void SNA_fn_vSetBigFile(ACP_tdxBool _bFigFileUsed);
|
|
extern CPA_EXPORT ACP_tdxBool SNA_fn_bBigFileUsed();
|
|
|
|
#ifdef __cplusplus
|
|
}/* extern "C" */
|
|
#endif
|
|
|
|
#endif /* __SNAGLOB_H__*/
|