orx 1.16
Portable Game Engine
Loading...
Searching...
No Matches
orxConfig.h
Go to the documentation of this file.
1/* Orx - Portable Game Engine
2 *
3 * Copyright (c) 2008- Orx-Project
4 *
5 * This software is provided 'as-is', without any express or implied
6 * warranty. In no event will the authors be held liable for any damages
7 * arising from the use of this software.
8 *
9 * Permission is granted to anyone to use this software for any purpose,
10 * including commercial applications, and to alter it and redistribute it
11 * freely, subject to the following restrictions:
12 *
13 * 1. The origin of this software must not be misrepresented; you must not
14 * claim that you wrote the original software. If you use this software
15 * in a product, an acknowledgment in the product documentation would be
16 * appreciated but is not required.
17 *
18 * 2. Altered source versions must be plainly marked as such, and must not be
19 * misrepresented as being the original software.
20 *
21 * 3. This notice may not be removed or altered from any source
22 * distribution.
23 */
24
32
41
42
43#ifndef _orxCONFIG_H_
44#define _orxCONFIG_H_
45
46
47#include "orxInclude.h"
48
49#include "math/orxVector.h"
50
51
54#define orxCONFIG_KZ_RESOURCE_GROUP "Config"
55
56
69
70
72typedef orxBOOL (orxFASTCALL *orxCONFIG_SAVE_FUNCTION)(const orxSTRING _zSectionName, const orxSTRING _zKeyName, const orxSTRING _zFileName, orxBOOL _bUseEncryption);
73
75typedef orxBOOL (orxFASTCALL *orxCONFIG_CLEAR_FUNCTION)(const orxSTRING _zSectionName, const orxSTRING _zKeyName);
76
78typedef orxSTATUS (orxFASTCALL *orxCONFIG_BOOTSTRAP_FUNCTION)();
79
81typedef orxBOOL (orxFASTCALL *orxCONFIG_KEY_FUNCTION)(const orxSTRING _zKeyName, const orxSTRING _zSectionName, void *_pContext);
82
83
86extern orxDLLAPI void orxFASTCALL orxConfig_Setup();
87
91extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Init();
92
95extern orxDLLAPI void orxFASTCALL orxConfig_Exit();
96
97
100extern orxDLLAPI void orxFASTCALL orxConfig_EnableTypoCheck(orxBOOL _bEnable);
101
105extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsTypoCheckEnabled();
106
107
112extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetEncryptionKey(const orxSTRING _zEncryptionKey);
113
117extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetEncryptionKey();
118
126
131extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetBaseName(const orxSTRING _zBaseName);
132
136extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetMainFileName();
137
138
143extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Load(const orxSTRING _zFileName);
144
150extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_LoadFromMemory(orxCHAR *_acBuffer, orxU32 _u32BufferSize);
151
156
163extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Save(const orxSTRING _zFileName, orxBOOL _bUseEncryption, const orxCONFIG_SAVE_FUNCTION _pfnSaveCallback);
164
171extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_CopyFile(const orxSTRING _zDstFileName, const orxSTRING _zSrcFileName, const orxSTRING _zEncryptionKey);
172
180extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_MergeFiles(const orxSTRING _zDstFileName, const orxSTRING *_azSrcFileName, orxU32 _u32Number, const orxSTRING _zEncryptionKey);
181
186extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SelectSection(const orxSTRING _zSectionName);
187
193extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_RenameSection(const orxSTRING _zSectionName, const orxSTRING _zNewSectionName);
194
199extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetOrigin(const orxSTRING _zSectionName);
200
205extern orxDLLAPI orxSTRINGID orxFASTCALL orxConfig_GetOriginID(const orxSTRING _zSectionName);
206
212extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetOrigin(const orxSTRING _zSectionName, const orxSTRING _zOrigin);
213
219extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetParent(const orxSTRING _zSectionName, const orxSTRING _zParentName);
220
225extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetParent(const orxSTRING _zSectionName);
226
232extern orxDLLAPI orxU32 orxFASTCALL orxConfig_GetParentDistance(const orxSTRING _zSectionName, const orxSTRING _zParentName);
233
238extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetDefaultParent(const orxSTRING _zSectionName);
239
243extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetDefaultParent();
244
248extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetCurrentSection();
249
254extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_PushSection(const orxSTRING _zSectionName);
255
260
265extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasSection(const orxSTRING _zSectionName);
266
272extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ProtectSection(const orxSTRING _zSectionName, orxBOOL _bProtect);
273
277extern orxDLLAPI orxU32 orxFASTCALL orxConfig_GetSectionCount();
278
283extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetSection(orxU32 _u32SectionIndex);
284
285
290extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Clear(const orxCONFIG_CLEAR_FUNCTION _pfnClearCallback);
291
295extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ClearSection(const orxSTRING _zSectionName);
296
301extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ClearValue(const orxSTRING _zKey);
302
303
308extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsLocallyInheritedValue(const orxSTRING _zKey);
309
314extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsInheritedValue(const orxSTRING _zKey);
315
320extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsRandomValue(const orxSTRING _zKey);
321
326extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsDynamicValue(const orxSTRING _zKey);
327
332extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsCommandValue(const orxSTRING _zKey);
333
338extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasValue(const orxSTRING _zKey);
339
344extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasValueNoCheck(const orxSTRING _zKey);
345
350extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetValueSource(const orxSTRING _zKey);
351
356extern orxDLLAPI orxS32 orxFASTCALL orxConfig_GetS32(const orxSTRING _zKey);
357
362extern orxDLLAPI orxU32 orxFASTCALL orxConfig_GetU32(const orxSTRING _zKey);
363
368extern orxDLLAPI orxS64 orxFASTCALL orxConfig_GetS64(const orxSTRING _zKey);
369
374extern orxDLLAPI orxU64 orxFASTCALL orxConfig_GetU64(const orxSTRING _zKey);
375
380extern orxDLLAPI orxFLOAT orxFASTCALL orxConfig_GetFloat(const orxSTRING _zKey);
381
387extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetString(const orxSTRING _zKey);
388
393extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_GetBool(const orxSTRING _zKey);
394
400extern orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetVector(const orxSTRING _zKey, orxVECTOR *_pvVector);
401
408extern orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetColorVector(const orxSTRING _zKey, orxCOLORSPACE _eColorSpace, orxVECTOR *_pvVector);
409
414extern orxDLLAPI orxSTRING orxFASTCALL orxConfig_DuplicateRawValue(const orxSTRING _zKey);
415
416
422extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetS32(const orxSTRING _zKey, orxS32 _s32Value);
423
429extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetU32(const orxSTRING _zKey, orxU32 _u32Value);
430
436extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetS64(const orxSTRING _zKey, orxS64 _s64Value);
437
443extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetU64(const orxSTRING _zKey, orxU64 _u64Value);
444
450extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetFloat(const orxSTRING _zKey, orxFLOAT _fValue);
451
457extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetString(const orxSTRING _zKey, const orxSTRING _zValue);
458
464extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetStringBlock(const orxSTRING _zKey, const orxSTRING _zValue);
465
471extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetBool(const orxSTRING _zKey, orxBOOL _bValue);
472
478extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetVector(const orxSTRING _zKey, const orxVECTOR *_pvValue);
479
480
485extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsList(const orxSTRING _zKey);
486
491extern orxDLLAPI orxS32 orxFASTCALL orxConfig_GetListCount(const orxSTRING _zKey);
492
498extern orxDLLAPI orxS32 orxFASTCALL orxConfig_GetListS32(const orxSTRING _zKey, orxS32 _s32ListIndex);
499
505extern orxDLLAPI orxU32 orxFASTCALL orxConfig_GetListU32(const orxSTRING _zKey, orxS32 _s32ListIndex);
506
512extern orxDLLAPI orxS64 orxFASTCALL orxConfig_GetListS64(const orxSTRING _zKey, orxS32 _s32ListIndex);
513
519extern orxDLLAPI orxU64 orxFASTCALL orxConfig_GetListU64(const orxSTRING _zKey, orxS32 _s32ListIndex);
520
526extern orxDLLAPI orxFLOAT orxFASTCALL orxConfig_GetListFloat(const orxSTRING _zKey, orxS32 _s32ListIndex);
527
534extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetListString(const orxSTRING _zKey, orxS32 _s32ListIndex);
535
541extern orxDLLAPI orxBOOL orxFASTCALL orxConfig_GetListBool(const orxSTRING _zKey, orxS32 _s32ListIndex);
542
549extern orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetListVector(const orxSTRING _zKey, orxS32 _s32ListIndex, orxVECTOR *_pvVector);
550
558extern orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetListColorVector(const orxSTRING _zKey, orxS32 _s32ListIndex, orxCOLORSPACE _eColorSpace, orxVECTOR *_pvVector);
559
566extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetListString(const orxSTRING _zKey, const orxSTRING _azValue[], orxU32 _u32Number);
567
574extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_AppendListString(const orxSTRING _zKey, const orxSTRING _azValue[], orxU32 _u32Number);
575
581extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_AppendString(const orxSTRING _zKey, const orxSTRING _zValue);
582
586extern orxDLLAPI orxU32 orxFASTCALL orxConfig_GetKeyCount();
587
592extern orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetKey(orxU32 _u32KeyIndex);
593
600extern orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ForAllKeys(const orxCONFIG_KEY_FUNCTION _pfnKeyCallback, orxBOOL _bIncludeParents, void *_pContext);
601
602
603#endif /*_orxCONFIG_H_*/
604
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_AppendString(const orxSTRING _zKey, const orxSTRING _zValue)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_GetBool(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Clear(const orxCONFIG_CLEAR_FUNCTION _pfnClearCallback)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsLocallyInheritedValue(const orxSTRING _zKey)
orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetColorVector(const orxSTRING _zKey, orxCOLORSPACE _eColorSpace, orxVECTOR *_pvVector)
orxDLLAPI orxU64 orxFASTCALL orxConfig_GetListU64(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ClearSection(const orxSTRING _zSectionName)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetDefaultParent()
orxDLLAPI orxU32 orxFASTCALL orxConfig_GetParentDistance(const orxSTRING _zSectionName, const orxSTRING _zParentName)
orxDLLAPI orxS32 orxFASTCALL orxConfig_GetListCount(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetVector(const orxSTRING _zKey, const orxVECTOR *_pvValue)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetListString(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetEncryptionKey(const orxSTRING _zEncryptionKey)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_GetListBool(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsInheritedValue(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetOrigin(const orxSTRING _zSectionName, const orxSTRING _zOrigin)
orxDLLAPI orxU64 orxFASTCALL orxConfig_GetU64(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetU64(const orxSTRING _zKey, orxU64 _u64Value)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_AppendListString(const orxSTRING _zKey, const orxSTRING _azValue[], orxU32 _u32Number)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetS64(const orxSTRING _zKey, orxS64 _s64Value)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetOrigin(const orxSTRING _zSectionName)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetBootstrap(const orxCONFIG_BOOTSTRAP_FUNCTION _pfnBootstrap)
orxDLLAPI orxU32 orxFASTCALL orxConfig_GetSectionCount()
orxDLLAPI orxFLOAT orxFASTCALL orxConfig_GetListFloat(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ReloadHistory()
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_RenameSection(const orxSTRING _zSectionName, const orxSTRING _zNewSectionName)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetSection(orxU32 _u32SectionIndex)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetString(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Init()
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetS32(const orxSTRING _zKey, orxS32 _s32Value)
orxDLLAPI orxSTRINGID orxFASTCALL orxConfig_GetOriginID(const orxSTRING _zSectionName)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetBaseName(const orxSTRING _zBaseName)
orxDLLAPI orxFLOAT orxFASTCALL orxConfig_GetFloat(const orxSTRING _zKey)
orxDLLAPI orxS32 orxFASTCALL orxConfig_GetS32(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_MergeFiles(const orxSTRING _zDstFileName, const orxSTRING *_azSrcFileName, orxU32 _u32Number, const orxSTRING _zEncryptionKey)
orxBOOL(orxFASTCALL * orxCONFIG_KEY_FUNCTION)(const orxSTRING _zKeyName, const orxSTRING _zSectionName, void *_pContext)
Definition orxConfig.h:81
orxDLLAPI orxSTRING orxFASTCALL orxConfig_DuplicateRawValue(const orxSTRING _zKey)
orxDLLAPI orxS64 orxFASTCALL orxConfig_GetListS64(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetMainFileName()
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_LoadFromMemory(orxCHAR *_acBuffer, orxU32 _u32BufferSize)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetValueSource(const orxSTRING _zKey)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsCommandValue(const orxSTRING _zKey)
orxDLLAPI orxU32 orxFASTCALL orxConfig_GetU32(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetParent(const orxSTRING _zSectionName, const orxSTRING _zParentName)
orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetListVector(const orxSTRING _zKey, orxS32 _s32ListIndex, orxVECTOR *_pvVector)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetBool(const orxSTRING _zKey, orxBOOL _bValue)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetDefaultParent(const orxSTRING _zSectionName)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetU32(const orxSTRING _zKey, orxU32 _u32Value)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_PopSection()
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetParent(const orxSTRING _zSectionName)
orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetVector(const orxSTRING _zKey, orxVECTOR *_pvVector)
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetKey(orxU32 _u32KeyIndex)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsRandomValue(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetStringBlock(const orxSTRING _zKey, const orxSTRING _zValue)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ClearValue(const orxSTRING _zKey)
orxDLLAPI orxU32 orxFASTCALL orxConfig_GetListU32(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI void orxFASTCALL orxConfig_Setup()
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetEncryptionKey()
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ForAllKeys(const orxCONFIG_KEY_FUNCTION _pfnKeyCallback, orxBOOL _bIncludeParents, void *_pContext)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsList(const orxSTRING _zKey)
orxDLLAPI void orxFASTCALL orxConfig_Exit()
orxDLLAPI const orxSTRING orxFASTCALL orxConfig_GetCurrentSection()
orxDLLAPI orxVECTOR *orxFASTCALL orxConfig_GetListColorVector(const orxSTRING _zKey, orxS32 _s32ListIndex, orxCOLORSPACE _eColorSpace, orxVECTOR *_pvVector)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_PushSection(const orxSTRING _zSectionName)
orxDLLAPI orxU32 orxFASTCALL orxConfig_GetKeyCount()
orxDLLAPI orxS32 orxFASTCALL orxConfig_GetListS32(const orxSTRING _zKey, orxS32 _s32ListIndex)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasSection(const orxSTRING _zSectionName)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasValue(const orxSTRING _zKey)
orxCONFIG_EVENT
Definition orxConfig.h:60
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsDynamicValue(const orxSTRING _zKey)
orxDLLAPI orxBOOL orxFASTCALL orxConfig_IsTypoCheckEnabled()
orxDLLAPI orxBOOL orxFASTCALL orxConfig_HasValueNoCheck(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetListString(const orxSTRING _zKey, const orxSTRING _azValue[], orxU32 _u32Number)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetFloat(const orxSTRING _zKey, orxFLOAT _fValue)
orxBOOL(orxFASTCALL * orxCONFIG_CLEAR_FUNCTION)(const orxSTRING _zSectionName, const orxSTRING _zKeyName)
Definition orxConfig.h:75
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SelectSection(const orxSTRING _zSectionName)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_SetString(const orxSTRING _zKey, const orxSTRING _zValue)
orxDLLAPI orxS64 orxFASTCALL orxConfig_GetS64(const orxSTRING _zKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Load(const orxSTRING _zFileName)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_CopyFile(const orxSTRING _zDstFileName, const orxSTRING _zSrcFileName, const orxSTRING _zEncryptionKey)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_ProtectSection(const orxSTRING _zSectionName, orxBOOL _bProtect)
orxDLLAPI orxSTATUS orxFASTCALL orxConfig_Save(const orxSTRING _zFileName, orxBOOL _bUseEncryption, const orxCONFIG_SAVE_FUNCTION _pfnSaveCallback)
orxSTATUS(orxFASTCALL * orxCONFIG_BOOTSTRAP_FUNCTION)()
Definition orxConfig.h:78
orxDLLAPI void orxFASTCALL orxConfig_EnableTypoCheck(orxBOOL _bEnable)
orxBOOL(orxFASTCALL * orxCONFIG_SAVE_FUNCTION)(const orxSTRING _zSectionName, const orxSTRING _zKeyName, const orxSTRING _zFileName, orxBOOL _bUseEncryption)
Definition orxConfig.h:72
@ orxCONFIG_EVENT_RELOAD_STOP
Definition orxConfig.h:62
@ orxCONFIG_EVENT_RELOAD_START
Definition orxConfig.h:61
@ orxCONFIG_EVENT_NUMBER
Definition orxConfig.h:64
@ orxCONFIG_EVENT_NONE
Definition orxConfig.h:66
#define orxDLLAPI
Definition orxDecl.h:381
orxSTATUS
Definition orxType.h:270
orxCOLORSPACE
Definition orxType.h:196

Generated for orx by doxygen 1.8.11