rpgxef/code/ui/ui_syscalls.asm
Walter Julius Hennecke a39565b783 Integrated RPG-X2 rpgxEF edition into the rpgxEF repo
... not quite content with where the project files lie but it is ok for
now.
... compiling works fine so far (only tested mingw32 right now)
2012-08-04 12:54:37 +02:00

74 lines
2.1 KiB
NASM

code
equ trap_Error -1
equ trap_Print -2
equ trap_Milliseconds -3
equ trap_Cvar_Set -4
equ trap_Cvar_VariableValue -5
equ trap_Cvar_VariableStringBuffer -6
equ trap_Cvar_SetValue -7
equ trap_Cvar_Reset -8
equ trap_Cvar_Create -9
equ trap_Cvar_InfoStringBuffer -10
equ trap_Argc -11
equ trap_Argv -12
equ trap_Cmd_ExecuteText -13
equ trap_FS_FOpenFile -14
equ trap_FS_Read -15
equ trap_FS_Write -16
equ trap_FS_FCloseFile -17
equ trap_FS_GetFileList -18
equ trap_R_RegisterModel -19
equ trap_R_RegisterSkin -20
equ trap_R_RegisterShaderNoMip -21
equ trap_R_ClearScene -22
equ trap_R_AddRefEntityToScene -23
equ trap_R_AddPolyToScene -24
equ trap_R_AddLightToScene -25
equ trap_R_RenderScene -26
equ trap_R_SetColor -27
equ trap_R_DrawStretchPic -28
equ trap_UpdateScreen -29
equ trap_CM_LerpTag -30
equ trap_CM_LoadModel -31
equ trap_S_RegisterSound -32
equ trap_S_StartLocalSound -33
equ trap_Key_KeynumToStringBuf -34
equ trap_Key_GetBindingBuf -35
equ trap_Key_SetBinding -36
equ trap_Key_IsDown -37
equ trap_Key_GetOverstrikeMode -38
equ trap_Key_SetOverstrikeMode -39
equ trap_Key_ClearStates -40
equ trap_Key_GetCatcher -41
equ trap_Key_SetCatcher -42
equ trap_GetClipboardData -43
equ trap_GetGlconfig -44
equ trap_GetClientState -45
equ trap_GetConfigString -46
equ trap_LAN_GetLocalServerCount -47
equ trap_LAN_GetLocalServerAddressString -48
equ trap_LAN_GetGlobalServerCount -49
equ trap_LAN_GetGlobalServerAddressString -50
equ trap_LAN_GetPingQueueCount -51
equ trap_LAN_ClearPing -52
equ trap_LAN_GetPing -53
equ trap_LAN_GetPingInfo -54
equ trap_Cvar_Register -55
equ trap_Cvar_Update -56
equ trap_MemoryRemaining -57
equ trap_SetCDKey -58
equ trap_R_ModelBounds -59
equ memset -101
equ memcpy -102
equ strncpy -103
equ sin -104
equ cos -105
equ atan2 -106
equ sqrt -107
equ floor -111
equ ceil -112
equ testPrintInt -113
equ testPrintFloat -114