123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef SCRIPT_H
- #define SCRIPT_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- WORD
- PAL_RunTriggerScript(
- WORD wScriptEntry,
- WORD wEventObjectID
- );
- WORD
- PAL_RunAutoScript(
- WORD wScriptEntry,
- WORD wEventObjectID
- );
- extern BOOL g_fScriptSuccess;
- #ifdef __cplusplus
- }
- #endif
- #endif
|