Pyrogenesis  trunk
Classes | Functions | Variables
Errors.cpp File Reference
#include "precompiled.h"
#include "Errors.h"
Include dependency graph for Errors.cpp:

Classes

class  PSERROR_CVFSFile
 
class  PSERROR_Deserialize
 
class  PSERROR_DllLoader
 
class  PSERROR_Error
 
class  PSERROR_File
 
class  PSERROR_Game
 
class  PSERROR_Scripting
 
class  PSERROR_Serialize
 
class  PSERROR_System
 
class  PSERROR_Xeromyces
 
class  PSERROR_Game_World
 
class  PSERROR_Scripting_DefineType
 
class  PSERROR_Scripting_LoadFile
 
class  PSERROR_CVFSFile_AlreadyLoaded
 
class  PSERROR_CVFSFile_LoadFailed
 
class  PSERROR_Deserialize_InvalidCharInString
 
class  PSERROR_Deserialize_OutOfBounds
 
class  PSERROR_Deserialize_ReadFailed
 
class  PSERROR_Deserialize_ScriptError
 
class  PSERROR_DllLoader_DllNotLoaded
 
class  PSERROR_DllLoader_SymbolNotFound
 
class  PSERROR_Error_InvalidError
 
class  PSERROR_File_InvalidType
 
class  PSERROR_File_InvalidVersion
 
class  PSERROR_File_OpenFailed
 
class  PSERROR_File_ReadFailed
 
class  PSERROR_File_UnexpectedEOF
 
class  PSERROR_File_WriteFailed
 
class  PSERROR_Game_World_MapLoadFailed
 
class  PSERROR_Scripting_CallFunctionFailed
 
class  PSERROR_Scripting_CreateObjectFailed
 
class  PSERROR_Scripting_DefineConstantFailed
 
class  PSERROR_Scripting_DefineType_AlreadyExists
 
class  PSERROR_Scripting_DefineType_CreationFailed
 
class  PSERROR_Scripting_LoadFile_EvalErrors
 
class  PSERROR_Scripting_LoadFile_OpenFailed
 
class  PSERROR_Scripting_RegisterFunctionFailed
 
class  PSERROR_Scripting_SetupFailed
 
class  PSERROR_Scripting_TypeDoesNotExist
 
class  PSERROR_Serialize_InvalidCharInString
 
class  PSERROR_Serialize_InvalidScriptValue
 
class  PSERROR_Serialize_OutOfBounds
 
class  PSERROR_Serialize_ScriptError
 
class  PSERROR_System_RequiredExtensionsMissing
 
class  PSERROR_System_SDLInitFailed
 
class  PSERROR_System_VmodeFailed
 
class  PSERROR_Xeromyces_XMLOpenFailed
 
class  PSERROR_Xeromyces_XMLParseError
 
class  PSERROR_Xeromyces_XMLValidationFailed
 

Functions

const char * GetErrorString (PSRETURN code)
 
void ThrowError (PSRETURN code)
 

Variables

const PSRETURN PSRETURN_CVFSFile_AlreadyLoaded = 0x01000001
 
const PSRETURN PSRETURN_CVFSFile_LoadFailed = 0x01000002
 
const PSRETURN PSRETURN_Deserialize_InvalidCharInString = 0x02000001
 
const PSRETURN PSRETURN_Deserialize_OutOfBounds = 0x02000002
 
const PSRETURN PSRETURN_Deserialize_ReadFailed = 0x02000003
 
const PSRETURN PSRETURN_Deserialize_ScriptError = 0x02000004
 
const PSRETURN PSRETURN_DllLoader_DllNotLoaded = 0x03000001
 
const PSRETURN PSRETURN_DllLoader_SymbolNotFound = 0x03000002
 
const PSRETURN PSRETURN_Error_InvalidError = 0x04000001
 
const PSRETURN PSRETURN_File_InvalidType = 0x05000001
 
const PSRETURN PSRETURN_File_InvalidVersion = 0x05000002
 
const PSRETURN PSRETURN_File_OpenFailed = 0x05000003
 
const PSRETURN PSRETURN_File_ReadFailed = 0x05000004
 
const PSRETURN PSRETURN_File_UnexpectedEOF = 0x05000005
 
const PSRETURN PSRETURN_File_WriteFailed = 0x05000006
 
const PSRETURN PSRETURN_Game_World_MapLoadFailed = 0x06030001
 
const PSRETURN PSRETURN_Scripting_DefineType_AlreadyExists = 0x07010001
 
const PSRETURN PSRETURN_Scripting_DefineType_CreationFailed = 0x07010002
 
const PSRETURN PSRETURN_Scripting_LoadFile_EvalErrors = 0x07020001
 
const PSRETURN PSRETURN_Scripting_LoadFile_OpenFailed = 0x07020002
 
const PSRETURN PSRETURN_Scripting_CallFunctionFailed = 0x07000001
 
const PSRETURN PSRETURN_Scripting_CreateObjectFailed = 0x07000002
 
const PSRETURN PSRETURN_Scripting_DefineConstantFailed = 0x07000003
 
const PSRETURN PSRETURN_Scripting_RegisterFunctionFailed = 0x07000004
 
const PSRETURN PSRETURN_Scripting_SetupFailed = 0x07000005
 
const PSRETURN PSRETURN_Scripting_TypeDoesNotExist = 0x07000006
 
const PSRETURN PSRETURN_Serialize_InvalidCharInString = 0x08000001
 
const PSRETURN PSRETURN_Serialize_InvalidScriptValue = 0x08000002
 
const PSRETURN PSRETURN_Serialize_OutOfBounds = 0x08000003
 
const PSRETURN PSRETURN_Serialize_ScriptError = 0x08000004
 
const PSRETURN PSRETURN_System_RequiredExtensionsMissing = 0x09000001
 
const PSRETURN PSRETURN_System_SDLInitFailed = 0x09000002
 
const PSRETURN PSRETURN_System_VmodeFailed = 0x09000003
 
const PSRETURN PSRETURN_Xeromyces_XMLOpenFailed = 0x0a000001
 
const PSRETURN PSRETURN_Xeromyces_XMLParseError = 0x0a000002
 
const PSRETURN PSRETURN_Xeromyces_XMLValidationFailed = 0x0a000003
 
const PSRETURN MASK__PSRETURN_CVFSFile = 0xff000000
 
const PSRETURN CODE__PSRETURN_CVFSFile = 0x01000000
 
const PSRETURN MASK__PSRETURN_Deserialize = 0xff000000
 
const PSRETURN CODE__PSRETURN_Deserialize = 0x02000000
 
const PSRETURN MASK__PSRETURN_DllLoader = 0xff000000
 
const PSRETURN CODE__PSRETURN_DllLoader = 0x03000000
 
const PSRETURN MASK__PSRETURN_Error = 0xff000000
 
const PSRETURN CODE__PSRETURN_Error = 0x04000000
 
const PSRETURN MASK__PSRETURN_File = 0xff000000
 
const PSRETURN CODE__PSRETURN_File = 0x05000000
 
const PSRETURN MASK__PSRETURN_Game = 0xff000000
 
const PSRETURN CODE__PSRETURN_Game = 0x06000000
 
const PSRETURN MASK__PSRETURN_Scripting = 0xff000000
 
const PSRETURN CODE__PSRETURN_Scripting = 0x07000000
 
const PSRETURN MASK__PSRETURN_Serialize = 0xff000000
 
const PSRETURN CODE__PSRETURN_Serialize = 0x08000000
 
const PSRETURN MASK__PSRETURN_System = 0xff000000
 
const PSRETURN CODE__PSRETURN_System = 0x09000000
 
const PSRETURN MASK__PSRETURN_Xeromyces = 0x0a000000
 
const PSRETURN CODE__PSRETURN_Xeromyces = 0x0a000000
 
const PSRETURN MASK__PSRETURN_Game_World = 0xffff0000
 
const PSRETURN CODE__PSRETURN_Game_World = 0x06030000
 
const PSRETURN MASK__PSRETURN_Scripting_DefineType = 0xffff0000
 
const PSRETURN CODE__PSRETURN_Scripting_DefineType = 0x07010000
 
const PSRETURN MASK__PSRETURN_Scripting_LoadFile = 0xffff0000
 
const PSRETURN CODE__PSRETURN_Scripting_LoadFile = 0x07020000
 
const PSRETURN MASK__PSRETURN_CVFSFile_AlreadyLoaded = 0xffffffff
 
const PSRETURN CODE__PSRETURN_CVFSFile_AlreadyLoaded = 0x01000001
 
const PSRETURN MASK__PSRETURN_CVFSFile_LoadFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_CVFSFile_LoadFailed = 0x01000002
 
const PSRETURN MASK__PSRETURN_Deserialize_InvalidCharInString = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Deserialize_InvalidCharInString = 0x02000001
 
const PSRETURN MASK__PSRETURN_Deserialize_OutOfBounds = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Deserialize_OutOfBounds = 0x02000002
 
const PSRETURN MASK__PSRETURN_Deserialize_ReadFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Deserialize_ReadFailed = 0x02000003
 
const PSRETURN MASK__PSRETURN_Deserialize_ScriptError = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Deserialize_ScriptError = 0x02000004
 
const PSRETURN MASK__PSRETURN_DllLoader_DllNotLoaded = 0xffffffff
 
const PSRETURN CODE__PSRETURN_DllLoader_DllNotLoaded = 0x03000001
 
const PSRETURN MASK__PSRETURN_DllLoader_SymbolNotFound = 0xffffffff
 
const PSRETURN CODE__PSRETURN_DllLoader_SymbolNotFound = 0x03000002
 
const PSRETURN MASK__PSRETURN_Error_InvalidError = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Error_InvalidError = 0x04000001
 
const PSRETURN MASK__PSRETURN_File_InvalidType = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_InvalidType = 0x05000001
 
const PSRETURN MASK__PSRETURN_File_InvalidVersion = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_InvalidVersion = 0x05000002
 
const PSRETURN MASK__PSRETURN_File_OpenFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_OpenFailed = 0x05000003
 
const PSRETURN MASK__PSRETURN_File_ReadFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_ReadFailed = 0x05000004
 
const PSRETURN MASK__PSRETURN_File_UnexpectedEOF = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_UnexpectedEOF = 0x05000005
 
const PSRETURN MASK__PSRETURN_File_WriteFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_File_WriteFailed = 0x05000006
 
const PSRETURN MASK__PSRETURN_Game_World_MapLoadFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Game_World_MapLoadFailed = 0x06030001
 
const PSRETURN MASK__PSRETURN_Scripting_DefineType_AlreadyExists = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_DefineType_AlreadyExists = 0x07010001
 
const PSRETURN MASK__PSRETURN_Scripting_DefineType_CreationFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_DefineType_CreationFailed = 0x07010002
 
const PSRETURN MASK__PSRETURN_Scripting_LoadFile_EvalErrors = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_LoadFile_EvalErrors = 0x07020001
 
const PSRETURN MASK__PSRETURN_Scripting_LoadFile_OpenFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_LoadFile_OpenFailed = 0x07020002
 
const PSRETURN MASK__PSRETURN_Scripting_CallFunctionFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_CallFunctionFailed = 0x07000001
 
const PSRETURN MASK__PSRETURN_Scripting_CreateObjectFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_CreateObjectFailed = 0x07000002
 
const PSRETURN MASK__PSRETURN_Scripting_DefineConstantFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_DefineConstantFailed = 0x07000003
 
const PSRETURN MASK__PSRETURN_Scripting_RegisterFunctionFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_RegisterFunctionFailed = 0x07000004
 
const PSRETURN MASK__PSRETURN_Scripting_SetupFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_SetupFailed = 0x07000005
 
const PSRETURN MASK__PSRETURN_Scripting_TypeDoesNotExist = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Scripting_TypeDoesNotExist = 0x07000006
 
const PSRETURN MASK__PSRETURN_Serialize_InvalidCharInString = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Serialize_InvalidCharInString = 0x08000001
 
const PSRETURN MASK__PSRETURN_Serialize_InvalidScriptValue = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Serialize_InvalidScriptValue = 0x08000002
 
const PSRETURN MASK__PSRETURN_Serialize_OutOfBounds = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Serialize_OutOfBounds = 0x08000003
 
const PSRETURN MASK__PSRETURN_Serialize_ScriptError = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Serialize_ScriptError = 0x08000004
 
const PSRETURN MASK__PSRETURN_System_RequiredExtensionsMissing = 0xffffffff
 
const PSRETURN CODE__PSRETURN_System_RequiredExtensionsMissing = 0x09000001
 
const PSRETURN MASK__PSRETURN_System_SDLInitFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_System_SDLInitFailed = 0x09000002
 
const PSRETURN MASK__PSRETURN_System_VmodeFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_System_VmodeFailed = 0x09000003
 
const PSRETURN MASK__PSRETURN_Xeromyces_XMLOpenFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Xeromyces_XMLOpenFailed = 0x0a000001
 
const PSRETURN MASK__PSRETURN_Xeromyces_XMLParseError = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Xeromyces_XMLParseError = 0x0a000002
 
const PSRETURN MASK__PSRETURN_Xeromyces_XMLValidationFailed = 0xffffffff
 
const PSRETURN CODE__PSRETURN_Xeromyces_XMLValidationFailed = 0x0a000003
 

Function Documentation

◆ GetErrorString()

const char* GetErrorString ( PSRETURN  code)

◆ ThrowError()

void ThrowError ( PSRETURN  code)

Variable Documentation

◆ CODE__PSRETURN_CVFSFile

const PSRETURN CODE__PSRETURN_CVFSFile = 0x01000000

◆ CODE__PSRETURN_CVFSFile_AlreadyLoaded

const PSRETURN CODE__PSRETURN_CVFSFile_AlreadyLoaded = 0x01000001

◆ CODE__PSRETURN_CVFSFile_LoadFailed

const PSRETURN CODE__PSRETURN_CVFSFile_LoadFailed = 0x01000002

◆ CODE__PSRETURN_Deserialize

const PSRETURN CODE__PSRETURN_Deserialize = 0x02000000

◆ CODE__PSRETURN_Deserialize_InvalidCharInString

const PSRETURN CODE__PSRETURN_Deserialize_InvalidCharInString = 0x02000001

◆ CODE__PSRETURN_Deserialize_OutOfBounds

const PSRETURN CODE__PSRETURN_Deserialize_OutOfBounds = 0x02000002

◆ CODE__PSRETURN_Deserialize_ReadFailed

const PSRETURN CODE__PSRETURN_Deserialize_ReadFailed = 0x02000003

◆ CODE__PSRETURN_Deserialize_ScriptError

const PSRETURN CODE__PSRETURN_Deserialize_ScriptError = 0x02000004

◆ CODE__PSRETURN_DllLoader

const PSRETURN CODE__PSRETURN_DllLoader = 0x03000000

◆ CODE__PSRETURN_DllLoader_DllNotLoaded

const PSRETURN CODE__PSRETURN_DllLoader_DllNotLoaded = 0x03000001

◆ CODE__PSRETURN_DllLoader_SymbolNotFound

const PSRETURN CODE__PSRETURN_DllLoader_SymbolNotFound = 0x03000002

◆ CODE__PSRETURN_Error

const PSRETURN CODE__PSRETURN_Error = 0x04000000

◆ CODE__PSRETURN_Error_InvalidError

const PSRETURN CODE__PSRETURN_Error_InvalidError = 0x04000001

◆ CODE__PSRETURN_File

const PSRETURN CODE__PSRETURN_File = 0x05000000

◆ CODE__PSRETURN_File_InvalidType

const PSRETURN CODE__PSRETURN_File_InvalidType = 0x05000001

◆ CODE__PSRETURN_File_InvalidVersion

const PSRETURN CODE__PSRETURN_File_InvalidVersion = 0x05000002

◆ CODE__PSRETURN_File_OpenFailed

const PSRETURN CODE__PSRETURN_File_OpenFailed = 0x05000003

◆ CODE__PSRETURN_File_ReadFailed

const PSRETURN CODE__PSRETURN_File_ReadFailed = 0x05000004

◆ CODE__PSRETURN_File_UnexpectedEOF

const PSRETURN CODE__PSRETURN_File_UnexpectedEOF = 0x05000005

◆ CODE__PSRETURN_File_WriteFailed

const PSRETURN CODE__PSRETURN_File_WriteFailed = 0x05000006

◆ CODE__PSRETURN_Game

const PSRETURN CODE__PSRETURN_Game = 0x06000000

◆ CODE__PSRETURN_Game_World

const PSRETURN CODE__PSRETURN_Game_World = 0x06030000

◆ CODE__PSRETURN_Game_World_MapLoadFailed

const PSRETURN CODE__PSRETURN_Game_World_MapLoadFailed = 0x06030001

◆ CODE__PSRETURN_Scripting

const PSRETURN CODE__PSRETURN_Scripting = 0x07000000

◆ CODE__PSRETURN_Scripting_CallFunctionFailed

const PSRETURN CODE__PSRETURN_Scripting_CallFunctionFailed = 0x07000001

◆ CODE__PSRETURN_Scripting_CreateObjectFailed

const PSRETURN CODE__PSRETURN_Scripting_CreateObjectFailed = 0x07000002

◆ CODE__PSRETURN_Scripting_DefineConstantFailed

const PSRETURN CODE__PSRETURN_Scripting_DefineConstantFailed = 0x07000003

◆ CODE__PSRETURN_Scripting_DefineType

const PSRETURN CODE__PSRETURN_Scripting_DefineType = 0x07010000

◆ CODE__PSRETURN_Scripting_DefineType_AlreadyExists

const PSRETURN CODE__PSRETURN_Scripting_DefineType_AlreadyExists = 0x07010001

◆ CODE__PSRETURN_Scripting_DefineType_CreationFailed

const PSRETURN CODE__PSRETURN_Scripting_DefineType_CreationFailed = 0x07010002

◆ CODE__PSRETURN_Scripting_LoadFile

const PSRETURN CODE__PSRETURN_Scripting_LoadFile = 0x07020000

◆ CODE__PSRETURN_Scripting_LoadFile_EvalErrors

const PSRETURN CODE__PSRETURN_Scripting_LoadFile_EvalErrors = 0x07020001

◆ CODE__PSRETURN_Scripting_LoadFile_OpenFailed

const PSRETURN CODE__PSRETURN_Scripting_LoadFile_OpenFailed = 0x07020002

◆ CODE__PSRETURN_Scripting_RegisterFunctionFailed

const PSRETURN CODE__PSRETURN_Scripting_RegisterFunctionFailed = 0x07000004

◆ CODE__PSRETURN_Scripting_SetupFailed

const PSRETURN CODE__PSRETURN_Scripting_SetupFailed = 0x07000005

◆ CODE__PSRETURN_Scripting_TypeDoesNotExist

const PSRETURN CODE__PSRETURN_Scripting_TypeDoesNotExist = 0x07000006

◆ CODE__PSRETURN_Serialize

const PSRETURN CODE__PSRETURN_Serialize = 0x08000000

◆ CODE__PSRETURN_Serialize_InvalidCharInString

const PSRETURN CODE__PSRETURN_Serialize_InvalidCharInString = 0x08000001

◆ CODE__PSRETURN_Serialize_InvalidScriptValue

const PSRETURN CODE__PSRETURN_Serialize_InvalidScriptValue = 0x08000002

◆ CODE__PSRETURN_Serialize_OutOfBounds

const PSRETURN CODE__PSRETURN_Serialize_OutOfBounds = 0x08000003

◆ CODE__PSRETURN_Serialize_ScriptError

const PSRETURN CODE__PSRETURN_Serialize_ScriptError = 0x08000004

◆ CODE__PSRETURN_System

const PSRETURN CODE__PSRETURN_System = 0x09000000

◆ CODE__PSRETURN_System_RequiredExtensionsMissing

const PSRETURN CODE__PSRETURN_System_RequiredExtensionsMissing = 0x09000001

◆ CODE__PSRETURN_System_SDLInitFailed

const PSRETURN CODE__PSRETURN_System_SDLInitFailed = 0x09000002

◆ CODE__PSRETURN_System_VmodeFailed

const PSRETURN CODE__PSRETURN_System_VmodeFailed = 0x09000003

◆ CODE__PSRETURN_Xeromyces

const PSRETURN CODE__PSRETURN_Xeromyces = 0x0a000000

◆ CODE__PSRETURN_Xeromyces_XMLOpenFailed

const PSRETURN CODE__PSRETURN_Xeromyces_XMLOpenFailed = 0x0a000001

◆ CODE__PSRETURN_Xeromyces_XMLParseError

const PSRETURN CODE__PSRETURN_Xeromyces_XMLParseError = 0x0a000002

◆ CODE__PSRETURN_Xeromyces_XMLValidationFailed

const PSRETURN CODE__PSRETURN_Xeromyces_XMLValidationFailed = 0x0a000003

◆ MASK__PSRETURN_CVFSFile

const PSRETURN MASK__PSRETURN_CVFSFile = 0xff000000

◆ MASK__PSRETURN_CVFSFile_AlreadyLoaded

const PSRETURN MASK__PSRETURN_CVFSFile_AlreadyLoaded = 0xffffffff

◆ MASK__PSRETURN_CVFSFile_LoadFailed

const PSRETURN MASK__PSRETURN_CVFSFile_LoadFailed = 0xffffffff

◆ MASK__PSRETURN_Deserialize

const PSRETURN MASK__PSRETURN_Deserialize = 0xff000000

◆ MASK__PSRETURN_Deserialize_InvalidCharInString

const PSRETURN MASK__PSRETURN_Deserialize_InvalidCharInString = 0xffffffff

◆ MASK__PSRETURN_Deserialize_OutOfBounds

const PSRETURN MASK__PSRETURN_Deserialize_OutOfBounds = 0xffffffff

◆ MASK__PSRETURN_Deserialize_ReadFailed

const PSRETURN MASK__PSRETURN_Deserialize_ReadFailed = 0xffffffff

◆ MASK__PSRETURN_Deserialize_ScriptError

const PSRETURN MASK__PSRETURN_Deserialize_ScriptError = 0xffffffff

◆ MASK__PSRETURN_DllLoader

const PSRETURN MASK__PSRETURN_DllLoader = 0xff000000

◆ MASK__PSRETURN_DllLoader_DllNotLoaded

const PSRETURN MASK__PSRETURN_DllLoader_DllNotLoaded = 0xffffffff

◆ MASK__PSRETURN_DllLoader_SymbolNotFound

const PSRETURN MASK__PSRETURN_DllLoader_SymbolNotFound = 0xffffffff

◆ MASK__PSRETURN_Error

const PSRETURN MASK__PSRETURN_Error = 0xff000000

◆ MASK__PSRETURN_Error_InvalidError

const PSRETURN MASK__PSRETURN_Error_InvalidError = 0xffffffff

◆ MASK__PSRETURN_File

const PSRETURN MASK__PSRETURN_File = 0xff000000

◆ MASK__PSRETURN_File_InvalidType

const PSRETURN MASK__PSRETURN_File_InvalidType = 0xffffffff

◆ MASK__PSRETURN_File_InvalidVersion

const PSRETURN MASK__PSRETURN_File_InvalidVersion = 0xffffffff

◆ MASK__PSRETURN_File_OpenFailed

const PSRETURN MASK__PSRETURN_File_OpenFailed = 0xffffffff

◆ MASK__PSRETURN_File_ReadFailed

const PSRETURN MASK__PSRETURN_File_ReadFailed = 0xffffffff

◆ MASK__PSRETURN_File_UnexpectedEOF

const PSRETURN MASK__PSRETURN_File_UnexpectedEOF = 0xffffffff

◆ MASK__PSRETURN_File_WriteFailed

const PSRETURN MASK__PSRETURN_File_WriteFailed = 0xffffffff

◆ MASK__PSRETURN_Game

const PSRETURN MASK__PSRETURN_Game = 0xff000000

◆ MASK__PSRETURN_Game_World

const PSRETURN MASK__PSRETURN_Game_World = 0xffff0000

◆ MASK__PSRETURN_Game_World_MapLoadFailed

const PSRETURN MASK__PSRETURN_Game_World_MapLoadFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting

const PSRETURN MASK__PSRETURN_Scripting = 0xff000000

◆ MASK__PSRETURN_Scripting_CallFunctionFailed

const PSRETURN MASK__PSRETURN_Scripting_CallFunctionFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_CreateObjectFailed

const PSRETURN MASK__PSRETURN_Scripting_CreateObjectFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_DefineConstantFailed

const PSRETURN MASK__PSRETURN_Scripting_DefineConstantFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_DefineType

const PSRETURN MASK__PSRETURN_Scripting_DefineType = 0xffff0000

◆ MASK__PSRETURN_Scripting_DefineType_AlreadyExists

const PSRETURN MASK__PSRETURN_Scripting_DefineType_AlreadyExists = 0xffffffff

◆ MASK__PSRETURN_Scripting_DefineType_CreationFailed

const PSRETURN MASK__PSRETURN_Scripting_DefineType_CreationFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_LoadFile

const PSRETURN MASK__PSRETURN_Scripting_LoadFile = 0xffff0000

◆ MASK__PSRETURN_Scripting_LoadFile_EvalErrors

const PSRETURN MASK__PSRETURN_Scripting_LoadFile_EvalErrors = 0xffffffff

◆ MASK__PSRETURN_Scripting_LoadFile_OpenFailed

const PSRETURN MASK__PSRETURN_Scripting_LoadFile_OpenFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_RegisterFunctionFailed

const PSRETURN MASK__PSRETURN_Scripting_RegisterFunctionFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_SetupFailed

const PSRETURN MASK__PSRETURN_Scripting_SetupFailed = 0xffffffff

◆ MASK__PSRETURN_Scripting_TypeDoesNotExist

const PSRETURN MASK__PSRETURN_Scripting_TypeDoesNotExist = 0xffffffff

◆ MASK__PSRETURN_Serialize

const PSRETURN MASK__PSRETURN_Serialize = 0xff000000

◆ MASK__PSRETURN_Serialize_InvalidCharInString

const PSRETURN MASK__PSRETURN_Serialize_InvalidCharInString = 0xffffffff

◆ MASK__PSRETURN_Serialize_InvalidScriptValue

const PSRETURN MASK__PSRETURN_Serialize_InvalidScriptValue = 0xffffffff

◆ MASK__PSRETURN_Serialize_OutOfBounds

const PSRETURN MASK__PSRETURN_Serialize_OutOfBounds = 0xffffffff

◆ MASK__PSRETURN_Serialize_ScriptError

const PSRETURN MASK__PSRETURN_Serialize_ScriptError = 0xffffffff

◆ MASK__PSRETURN_System

const PSRETURN MASK__PSRETURN_System = 0xff000000

◆ MASK__PSRETURN_System_RequiredExtensionsMissing

const PSRETURN MASK__PSRETURN_System_RequiredExtensionsMissing = 0xffffffff

◆ MASK__PSRETURN_System_SDLInitFailed

const PSRETURN MASK__PSRETURN_System_SDLInitFailed = 0xffffffff

◆ MASK__PSRETURN_System_VmodeFailed

const PSRETURN MASK__PSRETURN_System_VmodeFailed = 0xffffffff

◆ MASK__PSRETURN_Xeromyces

const PSRETURN MASK__PSRETURN_Xeromyces = 0x0a000000

◆ MASK__PSRETURN_Xeromyces_XMLOpenFailed

const PSRETURN MASK__PSRETURN_Xeromyces_XMLOpenFailed = 0xffffffff

◆ MASK__PSRETURN_Xeromyces_XMLParseError

const PSRETURN MASK__PSRETURN_Xeromyces_XMLParseError = 0xffffffff

◆ MASK__PSRETURN_Xeromyces_XMLValidationFailed

const PSRETURN MASK__PSRETURN_Xeromyces_XMLValidationFailed = 0xffffffff

◆ PSRETURN_CVFSFile_AlreadyLoaded

const PSRETURN PSRETURN_CVFSFile_AlreadyLoaded = 0x01000001

◆ PSRETURN_CVFSFile_LoadFailed

const PSRETURN PSRETURN_CVFSFile_LoadFailed = 0x01000002

◆ PSRETURN_Deserialize_InvalidCharInString

const PSRETURN PSRETURN_Deserialize_InvalidCharInString = 0x02000001

◆ PSRETURN_Deserialize_OutOfBounds

const PSRETURN PSRETURN_Deserialize_OutOfBounds = 0x02000002

◆ PSRETURN_Deserialize_ReadFailed

const PSRETURN PSRETURN_Deserialize_ReadFailed = 0x02000003

◆ PSRETURN_Deserialize_ScriptError

const PSRETURN PSRETURN_Deserialize_ScriptError = 0x02000004

◆ PSRETURN_DllLoader_DllNotLoaded

const PSRETURN PSRETURN_DllLoader_DllNotLoaded = 0x03000001

◆ PSRETURN_DllLoader_SymbolNotFound

const PSRETURN PSRETURN_DllLoader_SymbolNotFound = 0x03000002

◆ PSRETURN_Error_InvalidError

const PSRETURN PSRETURN_Error_InvalidError = 0x04000001

◆ PSRETURN_File_InvalidType

const PSRETURN PSRETURN_File_InvalidType = 0x05000001

◆ PSRETURN_File_InvalidVersion

const PSRETURN PSRETURN_File_InvalidVersion = 0x05000002

◆ PSRETURN_File_OpenFailed

const PSRETURN PSRETURN_File_OpenFailed = 0x05000003

◆ PSRETURN_File_ReadFailed

const PSRETURN PSRETURN_File_ReadFailed = 0x05000004

◆ PSRETURN_File_UnexpectedEOF

const PSRETURN PSRETURN_File_UnexpectedEOF = 0x05000005

◆ PSRETURN_File_WriteFailed

const PSRETURN PSRETURN_File_WriteFailed = 0x05000006

◆ PSRETURN_Game_World_MapLoadFailed

const PSRETURN PSRETURN_Game_World_MapLoadFailed = 0x06030001

◆ PSRETURN_Scripting_CallFunctionFailed

const PSRETURN PSRETURN_Scripting_CallFunctionFailed = 0x07000001

◆ PSRETURN_Scripting_CreateObjectFailed

const PSRETURN PSRETURN_Scripting_CreateObjectFailed = 0x07000002

◆ PSRETURN_Scripting_DefineConstantFailed

const PSRETURN PSRETURN_Scripting_DefineConstantFailed = 0x07000003

◆ PSRETURN_Scripting_DefineType_AlreadyExists

const PSRETURN PSRETURN_Scripting_DefineType_AlreadyExists = 0x07010001

◆ PSRETURN_Scripting_DefineType_CreationFailed

const PSRETURN PSRETURN_Scripting_DefineType_CreationFailed = 0x07010002

◆ PSRETURN_Scripting_LoadFile_EvalErrors

const PSRETURN PSRETURN_Scripting_LoadFile_EvalErrors = 0x07020001

◆ PSRETURN_Scripting_LoadFile_OpenFailed

const PSRETURN PSRETURN_Scripting_LoadFile_OpenFailed = 0x07020002

◆ PSRETURN_Scripting_RegisterFunctionFailed

const PSRETURN PSRETURN_Scripting_RegisterFunctionFailed = 0x07000004

◆ PSRETURN_Scripting_SetupFailed

const PSRETURN PSRETURN_Scripting_SetupFailed = 0x07000005

◆ PSRETURN_Scripting_TypeDoesNotExist

const PSRETURN PSRETURN_Scripting_TypeDoesNotExist = 0x07000006

◆ PSRETURN_Serialize_InvalidCharInString

const PSRETURN PSRETURN_Serialize_InvalidCharInString = 0x08000001

◆ PSRETURN_Serialize_InvalidScriptValue

const PSRETURN PSRETURN_Serialize_InvalidScriptValue = 0x08000002

◆ PSRETURN_Serialize_OutOfBounds

const PSRETURN PSRETURN_Serialize_OutOfBounds = 0x08000003

◆ PSRETURN_Serialize_ScriptError

const PSRETURN PSRETURN_Serialize_ScriptError = 0x08000004

◆ PSRETURN_System_RequiredExtensionsMissing

const PSRETURN PSRETURN_System_RequiredExtensionsMissing = 0x09000001

◆ PSRETURN_System_SDLInitFailed

const PSRETURN PSRETURN_System_SDLInitFailed = 0x09000002

◆ PSRETURN_System_VmodeFailed

const PSRETURN PSRETURN_System_VmodeFailed = 0x09000003

◆ PSRETURN_Xeromyces_XMLOpenFailed

const PSRETURN PSRETURN_Xeromyces_XMLOpenFailed = 0x0a000001

◆ PSRETURN_Xeromyces_XMLParseError

const PSRETURN PSRETURN_Xeromyces_XMLParseError = 0x0a000002

◆ PSRETURN_Xeromyces_XMLValidationFailed

const PSRETURN PSRETURN_Xeromyces_XMLValidationFailed = 0x0a000003