diff --git a/units/sdl.inc b/units/sdl.inc index 0f0a1b3..af51ffa 100644 --- a/units/sdl.inc +++ b/units/sdl.inc @@ -41,20 +41,44 @@ const * Unless the SDL_INIT_NOPARACHUTE flag is set, it will install cleanup * signal handlers for some commonly ignored fatal signals (like SIGSEGV). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Init_func = function(flags: TSDL_Init): cint; cdecl; +Var + SDL_Init : TSDL_Init_func = Nil; +{$else} + function SDL_Init(flags: TSDL_Init): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Init' {$ENDIF} {$ENDIF}; +{$endif} {** * This function initializes specific SDL subsystems *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_InitSubSystem_func = function(flags: TSDL_Init): cint; cdecl; +Var + SDL_InitSubSystem : TSDL_InitSubSystem_func = Nil; +{$else} + function SDL_InitSubSystem(flags: TSDL_Init): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_InitSubSystem' {$ENDIF} {$ENDIF}; +{$endif} {** * This function cleans up specific SDL subsystems *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_QuitSubSystem_proc = procedure(flags: TSDL_Init); cdecl; +Var + SDL_QuitSubSystem : TSDL_QuitSubSystem_proc = Nil; +{$else} + procedure SDL_QuitSubSystem(flags: TSDL_Init); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_QuitSubSystem' {$ENDIF} {$ENDIF}; +{$endif} {** * This function returns a mask of the specified subsystems which have @@ -62,13 +86,29 @@ procedure SDL_QuitSubSystem(flags: TSDL_Init); cdecl; * * If flags is 0, it returns a mask of all initialized subsystems. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WasInit_func = function(flags: TSDL_Init): cuint32; cdecl; +Var + SDL_WasInit : TSDL_WasInit_func = Nil; +{$else} + function SDL_WasInit(flags: TSDL_Init): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WasInit' {$ENDIF} {$ENDIF}; +{$endif} {** * This function cleans up all initialized subsystems. You should * call it upon all exit conditions. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Quit_proc = procedure(); cdecl; +Var + SDL_Quit : TSDL_Quit_proc = Nil; +{$else} + procedure SDL_Quit(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Quit' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdl2.pas b/units/sdl2.pas index c607703..ddb3144 100644 --- a/units/sdl2.pas +++ b/units/sdl2.pas @@ -61,6 +61,30 @@ {$I jedi.inc} +(* + * If you get a compiler error with missing file + * just create a file namend "sdl2_cfg.inc" in your project folder and + * insert the following content: + * + * ---------- Content of file ---------- + + {* + * set this define if you want to use runtime loading instead of static linking + * ! Attention ! + * Not all functions are "ported" yet, so use is on own risk + * port missing functions. + *} + {.$DEFINE SDL_RUNTIME_LOADING} + + * ---------- End content of file ---------- + * + * ! Attention ! + * If you use the runtime loading feature, don't forget to call the SDL_LoadLib + * function. + *) + +{$I sdl2_cfg.inc} + interface {$IFDEF WINDOWS} @@ -169,6 +193,11 @@ interface {$I sdlsystem.inc} // 2.24.0 {$I sdl.inc} // 2.0.14 +{$ifdef SDL_RUNTIME_LOADING} +Function SDL_LoadLib(LibFilename: String): Boolean; +Procedure SDL_UnLoadLib(); +{$endif} + implementation (* @@ -183,7 +212,12 @@ implementation {$ELSE} AnsiStrings {$ENDIF} - ; + {$ifdef SDL_RUNTIME_LOADING} + , dynlibs + {$endif} + ; + +{$I sdl_runtime_linking.inc} // Macros from "sdl_version.h" procedure SDL_VERSION(out x: TSDL_Version); @@ -219,13 +253,13 @@ function SDL_Button(X: cint): cint; {$IFDEF WINDOWS} //from "sdl_thread.h" -function SDL_CreateThread(fn: TSDL_ThreadFunction; name: PAnsiChar; +function SDL_CreateThread2(fn: TSDL_ThreadFunction; name: PAnsiChar; data: Pointer): PSDL_Thread; overload; begin Result := SDL_CreateThread(fn,name,data,nil,nil); end; -function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; +function SDL_CreateThreadWithStackSize2(fn: TSDL_ThreadFunction; name: PAnsiChar; const stacksize: csize_t; data: Pointer ): PSDL_Thread; overload; begin @@ -480,4 +514,11 @@ function SDL_GameControllerAddMappingsFromFile(const FilePath: PAnsiChar Result := SDL_GameControllerAddMappingsFromRW(SDL_RWFromFile(FilePath, 'rb'), 1) end; + +{$IFDEF SDL_RUNTIME_LOADING} + +Finalization + SDL_UnLoadLib(); +{$ENDIF} + end. diff --git a/units/sdl_runtime_linking.inc b/units/sdl_runtime_linking.inc new file mode 100644 index 0000000..a791e68 --- /dev/null +++ b/units/sdl_runtime_linking.inc @@ -0,0 +1,1149 @@ + +{$IFDEF SDL_RUNTIME_LOADING} + +Var + LibHandle: TLibHandle = 0; + +Function SDL_LoadLib(LibFilename: String): Boolean; +Begin + result := false; + SDL_UnLoadLib(); + If LibFilename = '' Then + LibFilename := SDL_LibName; + LibHandle := LoadLibrary(LibFilename); + If LibHandle <> 0 Then Begin + (* + * Das hier ist nicht mal Ansatzweise fertig, aber es reicht um SDL2 zu initialisieren und einen Joystick ab zu fragen ;) + *) + result := true; + + SDL_Init := TSDL_Init_func(GetProcAddress(LibHandle, 'SDL_Init')); + If Not assigned(SDL_Init) Then result := false; + SDL_InitSubSystem := TSDL_InitSubSystem_func(GetProcAddress(LibHandle, 'SDL_InitSubSystem')); + If Not assigned(SDL_InitSubSystem) Then result := false; + SDL_QuitSubSystem := TSDL_QuitSubSystem_proc(GetProcAddress(LibHandle, 'SDL_QuitSubSystem')); + If Not assigned(SDL_QuitSubSystem) Then result := false; + SDL_WasInit := TSDL_WasInit_func(GetProcAddress(LibHandle, 'SDL_WasInit')); + If Not assigned(SDL_WasInit) Then result := false; + SDL_Quit := TSDL_Quit_proc(GetProcAddress(LibHandle, 'SDL_Quit')); + If Not assigned(SDL_Quit) Then result := false; + SDL_GetAudioDriver := TSDL_GetAudioDriver_func(GetProcAddress(LibHandle, 'SDL_GetAudioDriver')); + If Not assigned(SDL_GetAudioDriver) Then result := false; + SDL_AudioInit := TSDL_AudioInit_func(GetProcAddress(LibHandle, 'SDL_AudioInit')); + If Not assigned(SDL_AudioInit) Then result := false; + SDL_OpenAudio := TSDL_OpenAudio_func(GetProcAddress(LibHandle, 'SDL_OpenAudio')); + If Not assigned(SDL_OpenAudio) Then result := false; + SDL_GetNumAudioDevices := TSDL_GetNumAudioDevices_func(GetProcAddress(LibHandle, 'SDL_GetNumAudioDevices')); + If Not assigned(SDL_GetNumAudioDevices) Then result := false; + SDL_GetAudioDeviceName := TSDL_GetAudioDeviceName_func(GetProcAddress(LibHandle, 'SDL_GetAudioDeviceName')); + If Not assigned(SDL_GetAudioDeviceName) Then result := false; + //SDL_GetAudioDeviceSpec := TSDL_GetAudioDeviceSpec_func(GetProcAddress(LibHandle, 'SDL_GetAudioDeviceSpec')); // TODO: Das geht nicht, warum ? + //If Not assigned(SDL_GetAudioDeviceSpec) Then result := false; + //SDL_GetDefaultAudioInfo := TSDL_GetDefaultAudioInfo_func(GetProcAddress(LibHandle, 'SDL_GetDefaultAudioInfo')); // TODO: Das geht nicht, warum ? + //If Not assigned(SDL_GetDefaultAudioInfo) Then result := false; + SDL_OpenAudioDevice := TSDL_OpenAudioDevice_func(GetProcAddress(LibHandle, 'SDL_OpenAudioDevice')); + If Not assigned(SDL_OpenAudioDevice) Then result := false; + SDL_GetAudioDeviceStatus := TSDL_GetAudioDeviceStatus_func(GetProcAddress(LibHandle, 'SDL_GetAudioDeviceStatus')); + If Not assigned(SDL_GetAudioDeviceStatus) Then result := false; + SDL_PauseAudio := TSDL_PauseAudio_proc(GetProcAddress(LibHandle, 'SDL_PauseAudio')); + If Not assigned(SDL_PauseAudio) Then result := false; + SDL_PauseAudioDevice := TSDL_PauseAudioDevice_proc(GetProcAddress(LibHandle, 'SDL_PauseAudioDevice')); + If Not assigned(SDL_PauseAudioDevice) Then result := false; + SDL_LoadWAV_RW := TSDL_LoadWAV_RW_func(GetProcAddress(LibHandle, 'SDL_LoadWAV_RW')); + If Not assigned(SDL_LoadWAV_RW) Then result := false; + SDL_FreeWAV := TSDL_FreeWAV_proc(GetProcAddress(LibHandle, 'SDL_FreeWAV')); + If Not assigned(SDL_FreeWAV) Then result := false; + SDL_BuildAudioCVT := TSDL_BuildAudioCVT_func(GetProcAddress(LibHandle, 'SDL_BuildAudioCVT')); + If Not assigned(SDL_BuildAudioCVT) Then result := false; + SDL_ConvertAudio := TSDL_ConvertAudio_func(GetProcAddress(LibHandle, 'SDL_ConvertAudio')); + If Not assigned(SDL_ConvertAudio) Then result := false; + SDL_NewAudioStream := TSDL_NewAudioStream_func(GetProcAddress(LibHandle, 'SDL_NewAudioStream')); + If Not assigned(SDL_NewAudioStream) Then result := false; + SDL_AudioStreamPut := TSDL_AudioStreamPut_func(GetProcAddress(LibHandle, 'SDL_AudioStreamPut')); + If Not assigned(SDL_AudioStreamPut) Then result := false; + SDL_AudioStreamGet := TSDL_AudioStreamGet_func(GetProcAddress(LibHandle, 'SDL_AudioStreamGet')); + If Not assigned(SDL_AudioStreamGet) Then result := false; + SDL_AudioStreamAvailable := TSDL_AudioStreamAvailable_func(GetProcAddress(LibHandle, 'SDL_AudioStreamAvailable')); + If Not assigned(SDL_AudioStreamAvailable) Then result := false; + SDL_AudioStreamFlush := TSDL_AudioStreamFlush_func(GetProcAddress(LibHandle, 'SDL_AudioStreamFlush')); + If Not assigned(SDL_AudioStreamFlush) Then result := false; + SDL_AudioStreamClear := TSDL_AudioStreamClear_proc(GetProcAddress(LibHandle, 'SDL_AudioStreamClear')); + If Not assigned(SDL_AudioStreamClear) Then result := false; + SDL_FreeAudioStream := TSDL_FreeAudioStream_proc(GetProcAddress(LibHandle, 'SDL_FreeAudioStream')); + If Not assigned(SDL_FreeAudioStream) Then result := false; + SDL_MixAudio := TSDL_MixAudio_proc(GetProcAddress(LibHandle, 'SDL_MixAudio')); + If Not assigned(SDL_MixAudio) Then result := false; + SDL_MixAudioFormat := TSDL_MixAudioFormat_proc(GetProcAddress(LibHandle, 'SDL_MixAudioFormat')); + If Not assigned(SDL_MixAudioFormat) Then result := false; + SDL_QueueAudio := TSDL_QueueAudio_func(GetProcAddress(LibHandle, 'SDL_QueueAudio')); + If Not assigned(SDL_QueueAudio) Then result := false; + SDL_DequeueAudio := TSDL_DequeueAudio_func(GetProcAddress(LibHandle, 'SDL_DequeueAudio')); + If Not assigned(SDL_DequeueAudio) Then result := false; + SDL_GetQueuedAudioSize := TSDL_GetQueuedAudioSize_func(GetProcAddress(LibHandle, 'SDL_GetQueuedAudioSize')); + If Not assigned(SDL_GetQueuedAudioSize) Then result := false; + SDL_ClearQueuedAudio := TSDL_ClearQueuedAudio_proc(GetProcAddress(LibHandle, 'SDL_ClearQueuedAudio')); + If Not assigned(SDL_ClearQueuedAudio) Then result := false; + SDL_LockAudioDevice := TSDL_LockAudioDevice_proc(GetProcAddress(LibHandle, 'SDL_LockAudioDevice')); + If Not assigned(SDL_LockAudioDevice) Then result := false; + SDL_UnlockAudioDevice := TSDL_UnlockAudioDevice_proc(GetProcAddress(LibHandle, 'SDL_UnlockAudioDevice')); + If Not assigned(SDL_UnlockAudioDevice) Then result := false; + SDL_CloseAudioDevice := TSDL_CloseAudioDevice_proc(GetProcAddress(LibHandle, 'SDL_CloseAudioDevice')); + If Not assigned(SDL_CloseAudioDevice) Then result := false; + SDL_ComposeCustomBlendMode := TSDL_ComposeCustomBlendMode_func(GetProcAddress(LibHandle, 'SDL_ComposeCustomBlendMode')); + If Not assigned(SDL_ComposeCustomBlendMode) Then result := false; + SDL_SetClipboardText := TSDL_SetClipboardText_func(GetProcAddress(LibHandle, 'SDL_SetClipboardText')); + If Not assigned(SDL_SetClipboardText) Then result := false; + SDL_GetClipboardText := TSDL_GetClipboardText_func(GetProcAddress(LibHandle, 'SDL_GetClipboardText')); + If Not assigned(SDL_GetClipboardText) Then result := false; + SDL_HasClipboardText := TSDL_HasClipboardText_func(GetProcAddress(LibHandle, 'SDL_HasClipboardText')); + If Not assigned(SDL_HasClipboardText) Then result := false; + //SDL_SetPrimarySelectionText := TSDL_SetPrimarySelectionText_func(GetProcAddress(LibHandle, 'SDL_SetPrimarySelectionText')); // TODO: Das geht nicht, warum ? + //If Not assigned(SDL_SetPrimarySelectionText) Then result := false; + //SDL_GetPrimarySelectionText := TSDL_GetPrimarySelectionText_func(GetProcAddress(LibHandle, 'SDL_GetPrimarySelectionText')); + //If Not assigned(SDL_GetPrimarySelectionText) Then result := false; + //SDL_HasPrimarySelectionText := TSDL_HasPrimarySelectionText_func(GetProcAddress(LibHandle, 'SDL_HasPrimarySelectionText')); + //If Not assigned(SDL_HasPrimarySelectionText) Then result := false; + SDL_GetCPUCount := TSDL_GetCPUCount_func(GetProcAddress(LibHandle, 'SDL_GetCPUCount')); + If Not assigned(SDL_GetCPUCount) Then result := false; + SDL_SetError := TSDL_SetError_func(GetProcAddress(LibHandle, 'SDL_SetError')); + If Not assigned(SDL_SetError) Then result := false; + //SDL_GetErrorMsg := TSDL_GetErrorMsg_func(GetProcAddress(LibHandle, 'SDL_GetErrorMsg')); + //If Not assigned(SDL_GetErrorMsg) Then result := false; + SDL_Error := TSDL_Error_func(GetProcAddress(LibHandle, 'SDL_Error')); + If Not assigned(SDL_Error) Then result := false; + SDL_GetBasePath := TSDL_GetBasePath_func(GetProcAddress(LibHandle, 'SDL_GetBasePath')); + If Not assigned(SDL_GetBasePath) Then result := false; + SDL_GetPrefPath := TSDL_GetPrefPath_func(GetProcAddress(LibHandle, 'SDL_GetPrefPath')); + If Not assigned(SDL_GetPrefPath) Then result := false; + SDL_GameControllerAddMappingsFromRW := TSDL_GameControllerAddMappingsFromRW_func(GetProcAddress(LibHandle, 'SDL_GameControllerAddMappingsFromRW')); + If Not assigned(SDL_GameControllerAddMappingsFromRW) Then result := false; + SDL_GameControllerNumMappings := TSDL_GameControllerNumMappings_func(GetProcAddress(LibHandle, 'SDL_GameControllerNumMappings')); + If Not assigned(SDL_GameControllerNumMappings) Then result := false; + SDL_GameControllerMappingForIndex := TSDL_GameControllerMappingForIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerMappingForIndex')); + If Not assigned(SDL_GameControllerMappingForIndex) Then result := false; + //SDL_GameControllerPathForIndex := TSDL_GameControllerPathForIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerPathForIndex')); + //If Not assigned(SDL_GameControllerPathForIndex) Then result := false; + SDL_GameControllerTypeForIndex := TSDL_GameControllerTypeForIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerTypeForIndex')); + If Not assigned(SDL_GameControllerTypeForIndex) Then result := false; + SDL_GameControllerMappingForDeviceIndex := TSDL_GameControllerMappingForDeviceIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerMappingForDeviceIndex')); + If Not assigned(SDL_GameControllerMappingForDeviceIndex) Then result := false; + SDL_GameControllerFromInstanceID := TSDL_GameControllerFromInstanceID_func(GetProcAddress(LibHandle, 'SDL_GameControllerFromInstanceID')); + If Not assigned(SDL_GameControllerFromInstanceID) Then result := false; + SDL_GameControllerFromPlayerIndex := TSDL_GameControllerFromPlayerIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerFromPlayerIndex')); + If Not assigned(SDL_GameControllerFromPlayerIndex) Then result := false; + //SDL_GameControllerPath := TSDL_GameControllerPath_func(GetProcAddress(LibHandle, 'SDL_GameControllerPath')); + //If Not assigned(SDL_GameControllerPath) Then result := false; + SDL_GameControllerGetType := TSDL_GameControllerGetType_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetType')); + If Not assigned(SDL_GameControllerGetType) Then result := false; + SDL_GameControllerGetPlayerIndex := TSDL_GameControllerGetPlayerIndex_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetPlayerIndex')); + If Not assigned(SDL_GameControllerGetPlayerIndex) Then result := false; + SDL_GameControllerSetPlayerIndex := TSDL_GameControllerSetPlayerIndex_proc(GetProcAddress(LibHandle, 'SDL_GameControllerSetPlayerIndex')); + If Not assigned(SDL_GameControllerSetPlayerIndex) Then result := false; + SDL_GameControllerGetVendor := TSDL_GameControllerGetVendor_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetVendor')); + If Not assigned(SDL_GameControllerGetVendor) Then result := false; + SDL_GameControllerGetProduct := TSDL_GameControllerGetProduct_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetProduct')); + If Not assigned(SDL_GameControllerGetProduct) Then result := false; + SDL_GameControllerGetProductVersion := TSDL_GameControllerGetProductVersion_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetProductVersion')); + If Not assigned(SDL_GameControllerGetProductVersion) Then result := false; + //SDL_GameControllerGetFirmwareVersion := TSDL_GameControllerGetFirmwareVersion_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetFirmwareVersion')); + //If Not assigned(SDL_GameControllerGetFirmwareVersion) Then result := false; + //SDL_GameControllerGetSerial := TSDL_GameControllerGetSerial_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetSerial')); + //If Not assigned(SDL_GameControllerGetSerial) Then result := false; + //SDL_GameControllerGetSteamHandle := TSDL_GameControllerGetSteamHandle_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetSteamHandle')); + //If Not assigned(SDL_GameControllerGetSteamHandle) Then result := false; + //SDL_GameControllerHasAxis := TSDL_GameControllerHasAxis_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasAxis')); + //If Not assigned(SDL_GameControllerHasAxis) Then result := false; + //SDL_GameControllerHasButton := TSDL_GameControllerHasButton_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasButton')); + //If Not assigned(SDL_GameControllerHasButton) Then result := false; + //SDL_GameControllerGetNumTouchpads := TSDL_GameControllerGetNumTouchpads_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetNumTouchpads')); + //If Not assigned(SDL_GameControllerGetNumTouchpads) Then result := false; + //SDL_GameControllerGetNumTouchpadFingers := TSDL_GameControllerGetNumTouchpadFingers_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetNumTouchpadFingers')); + //If Not assigned(SDL_GameControllerGetNumTouchpadFingers) Then result := false; + //SDL_GameControllerGetTouchpadFinger := TSDL_GameControllerGetTouchpadFinger_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetTouchpadFinger')); + //If Not assigned(SDL_GameControllerGetTouchpadFinger) Then result := false; + //SDL_GameControllerHasSensor := TSDL_GameControllerHasSensor_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasSensor')); + //If Not assigned(SDL_GameControllerHasSensor) Then result := false; + //SDL_GameControllerSetSensorEnabled := TSDL_GameControllerSetSensorEnabled_func(GetProcAddress(LibHandle, 'SDL_GameControllerSetSensorEnabled')); + //If Not assigned(SDL_GameControllerSetSensorEnabled) Then result := false; + //SDL_GameControllerIsSensorEnabled := TSDL_GameControllerIsSensorEnabled_func(GetProcAddress(LibHandle, 'SDL_GameControllerIsSensorEnabled')); + //If Not assigned(SDL_GameControllerIsSensorEnabled) Then result := false; + (*SDL_GameControllerGetSensorDataRate := TSDL_GameControllerGetSensorDataRate_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetSensorDataRate')); + If Not assigned(SDL_GameControllerGetSensorDataRate) Then result := false; + SDL_GameControllerGetSensorData := TSDL_GameControllerGetSensorData_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetSensorData')); + If Not assigned(SDL_GameControllerGetSensorData) Then result := false; + SDL_GameControllerGetSensorDataWithTimestamp := TSDL_GameControllerGetSensorDataWithTimestamp_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetSensorDataWithTimestamp')); + If Not assigned(SDL_GameControllerGetSensorDataWithTimestamp) Then result := false; + SDL_GameControllerHasRumble := TSDL_GameControllerHasRumble_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasRumble')); + If Not assigned(SDL_GameControllerHasRumble) Then result := false; + SDL_GameControllerRumble := TSDL_GameControllerRumble_func(GetProcAddress(LibHandle, 'SDL_GameControllerRumble')); + If Not assigned(SDL_GameControllerRumble) Then result := false; + SDL_GameControllerHasRumbleTriggers := TSDL_GameControllerHasRumbleTriggers_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasRumbleTriggers')); + If Not assigned(SDL_GameControllerHasRumbleTriggers) Then result := false; + SDL_GameControllerRumbleTriggers := TSDL_GameControllerRumbleTriggers_func(GetProcAddress(LibHandle, 'SDL_GameControllerRumbleTriggers')); + If Not assigned(SDL_GameControllerRumbleTriggers) Then result := false; + SDL_GameControllerHasLED := TSDL_GameControllerHasLED_func(GetProcAddress(LibHandle, 'SDL_GameControllerHasLED')); + If Not assigned(SDL_GameControllerHasLED) Then result := false; + SDL_GameControllerSetLED := TSDL_GameControllerSetLED_func(GetProcAddress(LibHandle, 'SDL_GameControllerSetLED')); + If Not assigned(SDL_GameControllerSetLED) Then result := false; + SDL_GameControllerSendEffect := TSDL_GameControllerSendEffect_func(GetProcAddress(LibHandle, 'SDL_GameControllerSendEffect')); + If Not assigned(SDL_GameControllerSendEffect) Then result := false; + SDL_GameControllerGetAppleSFSymbolsNameForAxis := TSDL_GameControllerGetAppleSFSymbolsNameForAxis_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetAppleSFSymbolsNameForAxis')); + If Not assigned(SDL_GameControllerGetAppleSFSymbolsNameForAxis) Then result := false; + SDL_GameControllerGetAppleSFSymbolsNameForButton := TSDL_GameControllerGetAppleSFSymbolsNameForButton_func(GetProcAddress(LibHandle, 'SDL_GameControllerGetAppleSFSymbolsNameForButton')); + If Not assigned(SDL_GameControllerGetAppleSFSymbolsNameForButton) Then result := false; + SDL_RecordGesture := TSDL_RecordGesture_func(GetProcAddress(LibHandle, 'SDL_RecordGesture')); + If Not assigned(SDL_RecordGesture) Then result := false; + SDL_SaveAllDollarTemplates := TSDL_SaveAllDollarTemplates_func(GetProcAddress(LibHandle, 'SDL_SaveAllDollarTemplates')); + If Not assigned(SDL_SaveAllDollarTemplates) Then result := false; + SDL_SaveDollarTemplate := TSDL_SaveDollarTemplate_func(GetProcAddress(LibHandle, 'SDL_SaveDollarTemplate')); + If Not assigned(SDL_SaveDollarTemplate) Then result := false; + SDL_LoadDollarTemplates := TSDL_LoadDollarTemplates_func(GetProcAddress(LibHandle, 'SDL_LoadDollarTemplates')); + If Not assigned(SDL_LoadDollarTemplates) Then result := false; + SDL_GUIDToString := TSDL_GUIDToString_proc(GetProcAddress(LibHandle, 'SDL_GUIDToString')); + If Not assigned(SDL_GUIDToString) Then result := false; + SDL_GUIDFromString := TSDL_GUIDFromString_func(GetProcAddress(LibHandle, 'SDL_GUIDFromString')); + If Not assigned(SDL_GUIDFromString) Then result := false; + SDL_HapticName := TSDL_HapticName_func(GetProcAddress(LibHandle, 'SDL_HapticName')); + If Not assigned(SDL_HapticName) Then result := false; + SDL_HapticOpen := TSDL_HapticOpen_func(GetProcAddress(LibHandle, 'SDL_HapticOpen')); + If Not assigned(SDL_HapticOpen) Then result := false; + SDL_HapticOpened := TSDL_HapticOpened_func(GetProcAddress(LibHandle, 'SDL_HapticOpened')); + If Not assigned(SDL_HapticOpened) Then result := false; + SDL_HapticIndex := TSDL_HapticIndex_func(GetProcAddress(LibHandle, 'SDL_HapticIndex')); + If Not assigned(SDL_HapticIndex) Then result := false; + SDL_JoystickIsHaptic := TSDL_JoystickIsHaptic_func(GetProcAddress(LibHandle, 'SDL_JoystickIsHaptic')); + If Not assigned(SDL_JoystickIsHaptic) Then result := false; + SDL_HapticOpenFromJoystick := TSDL_HapticOpenFromJoystick_func(GetProcAddress(LibHandle, 'SDL_HapticOpenFromJoystick')); + If Not assigned(SDL_HapticOpenFromJoystick) Then result := false; + SDL_HapticClose := TSDL_HapticClose_proc(GetProcAddress(LibHandle, 'SDL_HapticClose')); + If Not assigned(SDL_HapticClose) Then result := false; + SDL_HapticNumEffects := TSDL_HapticNumEffects_func(GetProcAddress(LibHandle, 'SDL_HapticNumEffects')); + If Not assigned(SDL_HapticNumEffects) Then result := false; + SDL_HapticNumEffectsPlaying := TSDL_HapticNumEffectsPlaying_func(GetProcAddress(LibHandle, 'SDL_HapticNumEffectsPlaying')); + If Not assigned(SDL_HapticNumEffectsPlaying) Then result := false; + SDL_HapticQuery := TSDL_HapticQuery_func(GetProcAddress(LibHandle, 'SDL_HapticQuery')); + If Not assigned(SDL_HapticQuery) Then result := false; + SDL_HapticNumAxes := TSDL_HapticNumAxes_func(GetProcAddress(LibHandle, 'SDL_HapticNumAxes')); + If Not assigned(SDL_HapticNumAxes) Then result := false; + SDL_HapticEffectSupported := TSDL_HapticEffectSupported_func(GetProcAddress(LibHandle, 'SDL_HapticEffectSupported')); + If Not assigned(SDL_HapticEffectSupported) Then result := false; + SDL_HapticNewEffect := TSDL_HapticNewEffect_func(GetProcAddress(LibHandle, 'SDL_HapticNewEffect')); + If Not assigned(SDL_HapticNewEffect) Then result := false; + SDL_HapticUpdateEffect := TSDL_HapticUpdateEffect_func(GetProcAddress(LibHandle, 'SDL_HapticUpdateEffect')); + If Not assigned(SDL_HapticUpdateEffect) Then result := false; + SDL_HapticRunEffect := TSDL_HapticRunEffect_func(GetProcAddress(LibHandle, 'SDL_HapticRunEffect')); + If Not assigned(SDL_HapticRunEffect) Then result := false; + SDL_HapticStopEffect := TSDL_HapticStopEffect_func(GetProcAddress(LibHandle, 'SDL_HapticStopEffect')); + If Not assigned(SDL_HapticStopEffect) Then result := false; + SDL_HapticDestroyEffect := TSDL_HapticDestroyEffect_proc(GetProcAddress(LibHandle, 'SDL_HapticDestroyEffect')); + If Not assigned(SDL_HapticDestroyEffect) Then result := false; + SDL_HapticGetEffectStatus := TSDL_HapticGetEffectStatus_func(GetProcAddress(LibHandle, 'SDL_HapticGetEffectStatus')); + If Not assigned(SDL_HapticGetEffectStatus) Then result := false; + SDL_HapticSetGain := TSDL_HapticSetGain_func(GetProcAddress(LibHandle, 'SDL_HapticSetGain')); + If Not assigned(SDL_HapticSetGain) Then result := false; + SDL_HapticSetAutocenter := TSDL_HapticSetAutocenter_func(GetProcAddress(LibHandle, 'SDL_HapticSetAutocenter')); + If Not assigned(SDL_HapticSetAutocenter) Then result := false; + SDL_HapticPause := TSDL_HapticPause_func(GetProcAddress(LibHandle, 'SDL_HapticPause')); + If Not assigned(SDL_HapticPause) Then result := false; + SDL_HapticUnpause := TSDL_HapticUnpause_func(GetProcAddress(LibHandle, 'SDL_HapticUnpause')); + If Not assigned(SDL_HapticUnpause) Then result := false; + SDL_HapticStopAll := TSDL_HapticStopAll_func(GetProcAddress(LibHandle, 'SDL_HapticStopAll')); + If Not assigned(SDL_HapticStopAll) Then result := false; + SDL_HapticRumbleSupported := TSDL_HapticRumbleSupported_func(GetProcAddress(LibHandle, 'SDL_HapticRumbleSupported')); + If Not assigned(SDL_HapticRumbleSupported) Then result := false; + SDL_HapticRumbleInit := TSDL_HapticRumbleInit_func(GetProcAddress(LibHandle, 'SDL_HapticRumbleInit')); + If Not assigned(SDL_HapticRumbleInit) Then result := false; + SDL_HapticRumblePlay := TSDL_HapticRumblePlay_func(GetProcAddress(LibHandle, 'SDL_HapticRumblePlay')); + If Not assigned(SDL_HapticRumblePlay) Then result := false; + SDL_HapticRumbleStop := TSDL_HapticRumbleStop_func(GetProcAddress(LibHandle, 'SDL_HapticRumbleStop')); + If Not assigned(SDL_HapticRumbleStop) Then result := false; + SDL_SetHintWithPriority := TSDL_SetHintWithPriority_func(GetProcAddress(LibHandle, 'SDL_SetHintWithPriority')); + If Not assigned(SDL_SetHintWithPriority) Then result := false; + SDL_SetHint := TSDL_SetHint_func(GetProcAddress(LibHandle, 'SDL_SetHint')); + If Not assigned(SDL_SetHint) Then result := false; + SDL_ResetHint := TSDL_ResetHint_func(GetProcAddress(LibHandle, 'SDL_ResetHint')); + If Not assigned(SDL_ResetHint) Then result := false; + SDL_ResetHints := TSDL_ResetHints_proc(GetProcAddress(LibHandle, 'SDL_ResetHints')); + If Not assigned(SDL_ResetHints) Then result := false; + SDL_GetHint := TSDL_GetHint_func(GetProcAddress(LibHandle, 'SDL_GetHint')); + If Not assigned(SDL_GetHint) Then result := false; + SDL_GetHintBoolean := TSDL_GetHintBoolean_func(GetProcAddress(LibHandle, 'SDL_GetHintBoolean')); + If Not assigned(SDL_GetHintBoolean) Then result := false; + SDL_AddHintCallback := TSDL_AddHintCallback_proc(GetProcAddress(LibHandle, 'SDL_AddHintCallback')); + If Not assigned(SDL_AddHintCallback) Then result := false; + SDL_DelHintCallback := TSDL_DelHintCallback_proc(GetProcAddress(LibHandle, 'SDL_DelHintCallback')); + If Not assigned(SDL_DelHintCallback) Then result := false; + SDL_ClearHints := TSDL_ClearHints_proc(GetProcAddress(LibHandle, 'SDL_ClearHints')); + If Not assigned(SDL_ClearHints) Then result := false; + SDL_LockJoysticks := TSDL_LockJoysticks_proc(GetProcAddress(LibHandle, 'SDL_LockJoysticks')); + If Not assigned(SDL_LockJoysticks) Then result := false; + SDL_UnlockJoysticks := TSDL_UnlockJoysticks_proc(GetProcAddress(LibHandle, 'SDL_UnlockJoysticks')); + If Not assigned(SDL_UnlockJoysticks) Then result := false;//*) + SDL_NumJoysticks := TSDL_NumJoysticks_func(GetProcAddress(LibHandle, 'SDL_NumJoysticks')); + If Not assigned(SDL_NumJoysticks) Then result := false; + SDL_JoystickNameForIndex := TSDL_JoystickNameForIndex_func(GetProcAddress(LibHandle, 'SDL_JoystickNameForIndex')); + If Not assigned(SDL_JoystickNameForIndex) Then result := false; + (* SDL_JoystickPathForIndex := TSDL_JoystickPathForIndex_func(GetProcAddress(LibHandle, 'SDL_JoystickPathForIndex')); + If Not assigned(SDL_JoystickPathForIndex) Then result := false; + SDL_JoystickGetDevicePlayerIndex := TSDL_JoystickGetDevicePlayerIndex_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDevicePlayerIndex')); + If Not assigned(SDL_JoystickGetDevicePlayerIndex) Then result := false; + SDL_JoystickGetDeviceGUID := TSDL_JoystickGetDeviceGUID_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceGUID')); + If Not assigned(SDL_JoystickGetDeviceGUID) Then result := false; + SDL_JoystickGetDeviceVendor := TSDL_JoystickGetDeviceVendor_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceVendor')); + If Not assigned(SDL_JoystickGetDeviceVendor) Then result := false; + SDL_JoystickGetDeviceProduct := TSDL_JoystickGetDeviceProduct_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceProduct')); + If Not assigned(SDL_JoystickGetDeviceProduct) Then result := false; + SDL_JoystickGetDeviceProductVersion := TSDL_JoystickGetDeviceProductVersion_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceProductVersion')); + If Not assigned(SDL_JoystickGetDeviceProductVersion) Then result := false; + SDL_JoystickGetDeviceType := TSDL_JoystickGetDeviceType_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceType')); + If Not assigned(SDL_JoystickGetDeviceType) Then result := false; + SDL_JoystickGetDeviceInstanceID := TSDL_JoystickGetDeviceInstanceID_func(GetProcAddress(LibHandle, 'SDL_JoystickGetDeviceInstanceID')); + If Not assigned(SDL_JoystickGetDeviceInstanceID) Then result := false;// *) + SDL_JoystickOpen := TSDL_JoystickOpen_func(GetProcAddress(LibHandle, 'SDL_JoystickOpen')); + If Not assigned(SDL_JoystickOpen) Then result := false; + (* SDL_JoystickFromInstanceID := TSDL_JoystickFromInstanceID_func(GetProcAddress(LibHandle, 'SDL_JoystickFromInstanceID')); + If Not assigned(SDL_JoystickFromInstanceID) Then result := false; + SDL_JoystickFromPlayerIndex := TSDL_JoystickFromPlayerIndex_func(GetProcAddress(LibHandle, 'SDL_JoystickFromPlayerIndex')); + If Not assigned(SDL_JoystickFromPlayerIndex) Then result := false; + SDL_JoystickAttachVirtual := TSDL_JoystickAttachVirtual_func(GetProcAddress(LibHandle, 'SDL_JoystickAttachVirtual')); + If Not assigned(SDL_JoystickAttachVirtual) Then result := false; + SDL_JoystickAttachVirtualEx := TSDL_JoystickAttachVirtualEx_func(GetProcAddress(LibHandle, 'SDL_JoystickAttachVirtualEx')); + If Not assigned(SDL_JoystickAttachVirtualEx) Then result := false; + SDL_JoystickDetachVirtual := TSDL_JoystickDetachVirtual_func(GetProcAddress(LibHandle, 'SDL_JoystickDetachVirtual')); + If Not assigned(SDL_JoystickDetachVirtual) Then result := false; + SDL_JoystickIsVirtual := TSDL_JoystickIsVirtual_func(GetProcAddress(LibHandle, 'SDL_JoystickIsVirtual')); + If Not assigned(SDL_JoystickIsVirtual) Then result := false; + SDL_JoystickSetVirtualAxis := TSDL_JoystickSetVirtualAxis_func(GetProcAddress(LibHandle, 'SDL_JoystickSetVirtualAxis')); + If Not assigned(SDL_JoystickSetVirtualAxis) Then result := false; + SDL_JoystickSetVirtualButton := TSDL_JoystickSetVirtualButton_func(GetProcAddress(LibHandle, 'SDL_JoystickSetVirtualButton')); + If Not assigned(SDL_JoystickSetVirtualButton) Then result := false; + SDL_JoystickSetVirtualHat := TSDL_JoystickSetVirtualHat_func(GetProcAddress(LibHandle, 'SDL_JoystickSetVirtualHat')); + If Not assigned(SDL_JoystickSetVirtualHat) Then result := false; + SDL_JoystickName := TSDL_JoystickName_func(GetProcAddress(LibHandle, 'SDL_JoystickName')); + If Not assigned(SDL_JoystickName) Then result := false; + SDL_JoystickPath := TSDL_JoystickPath_func(GetProcAddress(LibHandle, 'SDL_JoystickPath')); + If Not assigned(SDL_JoystickPath) Then result := false; + SDL_JoystickGetPlayerIndex := TSDL_JoystickGetPlayerIndex_func(GetProcAddress(LibHandle, 'SDL_JoystickGetPlayerIndex')); + If Not assigned(SDL_JoystickGetPlayerIndex) Then result := false; + SDL_JoystickSetPlayerIndex := TSDL_JoystickSetPlayerIndex_proc(GetProcAddress(LibHandle, 'SDL_JoystickSetPlayerIndex')); + If Not assigned(SDL_JoystickSetPlayerIndex) Then result := false; + SDL_JoystickGetGUID := TSDL_JoystickGetGUID_func(GetProcAddress(LibHandle, 'SDL_JoystickGetGUID')); + If Not assigned(SDL_JoystickGetGUID) Then result := false; + SDL_JoystickGetVendor := TSDL_JoystickGetVendor_func(GetProcAddress(LibHandle, 'SDL_JoystickGetVendor')); + If Not assigned(SDL_JoystickGetVendor) Then result := false; + SDL_JoystickGetProduct := TSDL_JoystickGetProduct_func(GetProcAddress(LibHandle, 'SDL_JoystickGetProduct')); + If Not assigned(SDL_JoystickGetProduct) Then result := false; + SDL_JoystickGetProductVersion := TSDL_JoystickGetProductVersion_func(GetProcAddress(LibHandle, 'SDL_JoystickGetProductVersion')); + If Not assigned(SDL_JoystickGetProductVersion) Then result := false; + SDL_JoystickGetFirmwareVersion := TSDL_JoystickGetFirmwareVersion_func(GetProcAddress(LibHandle, 'SDL_JoystickGetFirmwareVersion')); + If Not assigned(SDL_JoystickGetFirmwareVersion) Then result := false; + SDL_JoystickGetSerial := TSDL_JoystickGetSerial_func(GetProcAddress(LibHandle, 'SDL_JoystickGetSerial')); + If Not assigned(SDL_JoystickGetSerial) Then result := false; + SDL_JoystickGetType := TSDL_JoystickGetType_func(GetProcAddress(LibHandle, 'SDL_JoystickGetType')); + If Not assigned(SDL_JoystickGetType) Then result := false; + SDL_JoystickGetGUIDString := TSDL_JoystickGetGUIDString_proc(GetProcAddress(LibHandle, 'SDL_JoystickGetGUIDString')); + If Not assigned(SDL_JoystickGetGUIDString) Then result := false; + SDL_JoystickGetGUIDFromString := TSDL_JoystickGetGUIDFromString_func(GetProcAddress(LibHandle, 'SDL_JoystickGetGUIDFromString')); + If Not assigned(SDL_JoystickGetGUIDFromString) Then result := false; + SDL_GetJoystickGUIDInfo := TSDL_GetJoystickGUIDInfo_proc(GetProcAddress(LibHandle, 'SDL_GetJoystickGUIDInfo')); + If Not assigned(SDL_GetJoystickGUIDInfo) Then result := false; + SDL_JoystickGetAttached := TSDL_JoystickGetAttached_func(GetProcAddress(LibHandle, 'SDL_JoystickGetAttached')); + If Not assigned(SDL_JoystickGetAttached) Then result := false; + SDL_JoystickInstanceID := TSDL_JoystickInstanceID_func(GetProcAddress(LibHandle, 'SDL_JoystickInstanceID')); + If Not assigned(SDL_JoystickInstanceID) Then result := false;//*) + SDL_JoystickNumAxes := TSDL_JoystickNumAxes_func(GetProcAddress(LibHandle, 'SDL_JoystickNumAxes')); + If Not assigned(SDL_JoystickNumAxes) Then result := false; + (* SDL_JoystickNumBalls := TSDL_JoystickNumBalls_func(GetProcAddress(LibHandle, 'SDL_JoystickNumBalls')); + If Not assigned(SDL_JoystickNumBalls) Then result := false; + SDL_JoystickNumHats := TSDL_JoystickNumHats_func(GetProcAddress(LibHandle, 'SDL_JoystickNumHats')); + If Not assigned(SDL_JoystickNumHats) Then result := false; //*) + SDL_JoystickNumButtons := TSDL_JoystickNumButtons_func(GetProcAddress(LibHandle, 'SDL_JoystickNumButtons')); + If Not assigned(SDL_JoystickNumButtons) Then result := false; + (* SDL_JoystickUpdate := TSDL_JoystickUpdate_proc(GetProcAddress(LibHandle, 'SDL_JoystickUpdate')); + If Not assigned(SDL_JoystickUpdate) Then result := false;// *) + SDL_JoystickEventState := TSDL_JoystickEventState_func(GetProcAddress(LibHandle, 'SDL_JoystickEventState')); + If Not assigned(SDL_JoystickEventState) Then result := false; + SDL_JoystickGetAxis := TSDL_JoystickGetAxis_func(GetProcAddress(LibHandle, 'SDL_JoystickGetAxis')); + If Not assigned(SDL_JoystickGetAxis) Then result := false; + (* SDL_JoystickGetAxisInitialState := TSDL_JoystickGetAxisInitialState_func(GetProcAddress(LibHandle, 'SDL_JoystickGetAxisInitialState')); + If Not assigned(SDL_JoystickGetAxisInitialState) Then result := false; + SDL_JoystickGetHat := TSDL_JoystickGetHat_func(GetProcAddress(LibHandle, 'SDL_JoystickGetHat')); + If Not assigned(SDL_JoystickGetHat) Then result := false; + SDL_JoystickGetBall := TSDL_JoystickGetBall_func(GetProcAddress(LibHandle, 'SDL_JoystickGetBall')); + If Not assigned(SDL_JoystickGetBall) Then result := false;// *) + SDL_JoystickGetButton := TSDL_JoystickGetButton_func(GetProcAddress(LibHandle, 'SDL_JoystickGetButton')); + If Not assigned(SDL_JoystickGetButton) Then result := false; + (* SDL_JoystickRumble := TSDL_JoystickRumble_func(GetProcAddress(LibHandle, 'SDL_JoystickRumble')); + If Not assigned(SDL_JoystickRumble) Then result := false; + SDL_JoystickRumbleTriggers := TSDL_JoystickRumbleTriggers_func(GetProcAddress(LibHandle, 'SDL_JoystickRumbleTriggers')); + If Not assigned(SDL_JoystickRumbleTriggers) Then result := false; + SDL_JoystickHasLED := TSDL_JoystickHasLED_func(GetProcAddress(LibHandle, 'SDL_JoystickHasLED')); + If Not assigned(SDL_JoystickHasLED) Then result := false; + SDL_JoystickHasRumble := TSDL_JoystickHasRumble_func(GetProcAddress(LibHandle, 'SDL_JoystickHasRumble')); + If Not assigned(SDL_JoystickHasRumble) Then result := false; + SDL_JoystickHasRumbleTriggers := TSDL_JoystickHasRumbleTriggers_func(GetProcAddress(LibHandle, 'SDL_JoystickHasRumbleTriggers')); + If Not assigned(SDL_JoystickHasRumbleTriggers) Then result := false; + SDL_JoystickSetLED := TSDL_JoystickSetLED_func(GetProcAddress(LibHandle, 'SDL_JoystickSetLED')); + If Not assigned(SDL_JoystickSetLED) Then result := false; + SDL_JoystickSendEffect := TSDL_JoystickSendEffect_func(GetProcAddress(LibHandle, 'SDL_JoystickSendEffect')); + If Not assigned(SDL_JoystickSendEffect) Then result := false;*) + SDL_JoystickClose := TSDL_JoystickClose_proc(GetProcAddress(LibHandle, 'SDL_JoystickClose')); + If Not assigned(SDL_JoystickClose) Then result := false; + (* SDL_JoystickCurrentPowerLevel := TSDL_JoystickCurrentPowerLevel_func(GetProcAddress(LibHandle, 'SDL_JoystickCurrentPowerLevel')); + If Not assigned(SDL_JoystickCurrentPowerLevel) Then result := false; + SDL_GetKeyboardState := TSDL_GetKeyboardState_func(GetProcAddress(LibHandle, 'SDL_GetKeyboardState')); + If Not assigned(SDL_GetKeyboardState) Then result := false; + SDL_SetModState := TSDL_SetModState_proc(GetProcAddress(LibHandle, 'SDL_SetModState')); + If Not assigned(SDL_SetModState) Then result := false; + SDL_GetKeyFromScancode := TSDL_GetKeyFromScancode_func(GetProcAddress(LibHandle, 'SDL_GetKeyFromScancode')); + If Not assigned(SDL_GetKeyFromScancode) Then result := false; + SDL_GetScancodeFromKey := TSDL_GetScancodeFromKey_func(GetProcAddress(LibHandle, 'SDL_GetScancodeFromKey')); + If Not assigned(SDL_GetScancodeFromKey) Then result := false; + SDL_GetScancodeName := TSDL_GetScancodeName_func(GetProcAddress(LibHandle, 'SDL_GetScancodeName')); + If Not assigned(SDL_GetScancodeName) Then result := false; + SDL_GetScancodeFromName := TSDL_GetScancodeFromName_func(GetProcAddress(LibHandle, 'SDL_GetScancodeFromName')); + If Not assigned(SDL_GetScancodeFromName) Then result := false; + SDL_GetKeyName := TSDL_GetKeyName_func(GetProcAddress(LibHandle, 'SDL_GetKeyName')); + If Not assigned(SDL_GetKeyName) Then result := false; + SDL_GetKeyFromName := TSDL_GetKeyFromName_func(GetProcAddress(LibHandle, 'SDL_GetKeyFromName')); + If Not assigned(SDL_GetKeyFromName) Then result := false; + SDL_SetTextInputRect := TSDL_SetTextInputRect_proc(GetProcAddress(LibHandle, 'SDL_SetTextInputRect')); + If Not assigned(SDL_SetTextInputRect) Then result := false; + SDL_IsScreenKeyboardShown := TSDL_IsScreenKeyboardShown_func(GetProcAddress(LibHandle, 'SDL_IsScreenKeyboardShown')); + If Not assigned(SDL_IsScreenKeyboardShown) Then result := false; + SDL_LoadObject := TSDL_LoadObject_func(GetProcAddress(LibHandle, 'SDL_LoadObject')); + If Not assigned(SDL_LoadObject) Then result := false; + SDL_UnloadObject := TSDL_UnloadObject_proc(GetProcAddress(LibHandle, 'SDL_UnloadObject')); + If Not assigned(SDL_UnloadObject) Then result := false; + SDL_LogSetAllPriority := TSDL_LogSetAllPriority_proc(GetProcAddress(LibHandle, 'SDL_LogSetAllPriority')); + If Not assigned(SDL_LogSetAllPriority) Then result := false; + SDL_LogSetPriority := TSDL_LogSetPriority_proc(GetProcAddress(LibHandle, 'SDL_LogSetPriority')); + If Not assigned(SDL_LogSetPriority) Then result := false; + SDL_LogGetPriority := TSDL_LogGetPriority_func(GetProcAddress(LibHandle, 'SDL_LogGetPriority')); + If Not assigned(SDL_LogGetPriority) Then result := false; + SDL_LogResetPriorities := TSDL_LogResetPriorities_proc(GetProcAddress(LibHandle, 'SDL_LogResetPriorities')); + If Not assigned(SDL_LogResetPriorities) Then result := false; + SDL_Log := TSDL_Log_proc(GetProcAddress(LibHandle, 'SDL_Log')); + If Not assigned(SDL_Log) Then result := false; + SDL_LogVerbose := TSDL_LogVerbose_proc(GetProcAddress(LibHandle, 'SDL_LogVerbose')); + If Not assigned(SDL_LogVerbose) Then result := false; + SDL_LogDebug := TSDL_LogDebug_proc(GetProcAddress(LibHandle, 'SDL_LogDebug')); + If Not assigned(SDL_LogDebug) Then result := false; + SDL_LogInfo := TSDL_LogInfo_proc(GetProcAddress(LibHandle, 'SDL_LogInfo')); + If Not assigned(SDL_LogInfo) Then result := false; + SDL_LogWarn := TSDL_LogWarn_proc(GetProcAddress(LibHandle, 'SDL_LogWarn')); + If Not assigned(SDL_LogWarn) Then result := false; + SDL_LogError := TSDL_LogError_proc(GetProcAddress(LibHandle, 'SDL_LogError')); + If Not assigned(SDL_LogError) Then result := false; + SDL_LogCritical := TSDL_LogCritical_proc(GetProcAddress(LibHandle, 'SDL_LogCritical')); + If Not assigned(SDL_LogCritical) Then result := false; + SDL_LogMessage := TSDL_LogMessage_proc(GetProcAddress(LibHandle, 'SDL_LogMessage')); + If Not assigned(SDL_LogMessage) Then result := false; + SDL_LogMessageV := TSDL_LogMessageV_proc(GetProcAddress(LibHandle, 'SDL_LogMessageV')); + If Not assigned(SDL_LogMessageV) Then result := false; + SDL_ShowMessageBox := TSDL_ShowMessageBox_func(GetProcAddress(LibHandle, 'SDL_ShowMessageBox')); + If Not assigned(SDL_ShowMessageBox) Then result := false; + SDL_ShowSimpleMessageBox := TSDL_ShowSimpleMessageBox_func(GetProcAddress(LibHandle, 'SDL_ShowSimpleMessageBox')); + If Not assigned(SDL_ShowSimpleMessageBox) Then result := false; + SDL_GetMouseState := TSDL_GetMouseState_func(GetProcAddress(LibHandle, 'SDL_GetMouseState')); + If Not assigned(SDL_GetMouseState) Then result := false; + SDL_GetGlobalMouseState := TSDL_GetGlobalMouseState_func(GetProcAddress(LibHandle, 'SDL_GetGlobalMouseState')); + If Not assigned(SDL_GetGlobalMouseState) Then result := false; + SDL_GetRelativeMouseState := TSDL_GetRelativeMouseState_func(GetProcAddress(LibHandle, 'SDL_GetRelativeMouseState')); + If Not assigned(SDL_GetRelativeMouseState) Then result := false; + SDL_WarpMouseInWindow := TSDL_WarpMouseInWindow_proc(GetProcAddress(LibHandle, 'SDL_WarpMouseInWindow')); + If Not assigned(SDL_WarpMouseInWindow) Then result := false; + SDL_WarpMouseGlobal := TSDL_WarpMouseGlobal_func(GetProcAddress(LibHandle, 'SDL_WarpMouseGlobal')); + If Not assigned(SDL_WarpMouseGlobal) Then result := false; + SDL_SetRelativeMouseMode := TSDL_SetRelativeMouseMode_func(GetProcAddress(LibHandle, 'SDL_SetRelativeMouseMode')); + If Not assigned(SDL_SetRelativeMouseMode) Then result := false; + SDL_CaptureMouse := TSDL_CaptureMouse_func(GetProcAddress(LibHandle, 'SDL_CaptureMouse')); + If Not assigned(SDL_CaptureMouse) Then result := false; + SDL_CreateCursor := TSDL_CreateCursor_func(GetProcAddress(LibHandle, 'SDL_CreateCursor')); + If Not assigned(SDL_CreateCursor) Then result := false; + SDL_CreateColorCursor := TSDL_CreateColorCursor_func(GetProcAddress(LibHandle, 'SDL_CreateColorCursor')); + If Not assigned(SDL_CreateColorCursor) Then result := false; + SDL_CreateSystemCursor := TSDL_CreateSystemCursor_func(GetProcAddress(LibHandle, 'SDL_CreateSystemCursor')); + If Not assigned(SDL_CreateSystemCursor) Then result := false; + SDL_SetCursor := TSDL_SetCursor_proc(GetProcAddress(LibHandle, 'SDL_SetCursor')); + If Not assigned(SDL_SetCursor) Then result := false; + SDL_FreeCursor := TSDL_FreeCursor_proc(GetProcAddress(LibHandle, 'SDL_FreeCursor')); + If Not assigned(SDL_FreeCursor) Then result := false; + SDL_ShowCursor := TSDL_ShowCursor_func(GetProcAddress(LibHandle, 'SDL_ShowCursor')); + If Not assigned(SDL_ShowCursor) Then result := false; + SDL_LockMutex := TSDL_LockMutex_func(GetProcAddress(LibHandle, 'SDL_LockMutex')); + If Not assigned(SDL_LockMutex) Then result := false; + SDL_TryLockMutex := TSDL_TryLockMutex_func(GetProcAddress(LibHandle, 'SDL_TryLockMutex')); + If Not assigned(SDL_TryLockMutex) Then result := false; + SDL_UnlockMutex := TSDL_UnlockMutex_func(GetProcAddress(LibHandle, 'SDL_UnlockMutex')); + If Not assigned(SDL_UnlockMutex) Then result := false; + SDL_DestroyMutex := TSDL_DestroyMutex_proc(GetProcAddress(LibHandle, 'SDL_DestroyMutex')); + If Not assigned(SDL_DestroyMutex) Then result := false; + SDL_CreateSemaphore := TSDL_CreateSemaphore_func(GetProcAddress(LibHandle, 'SDL_CreateSemaphore')); + If Not assigned(SDL_CreateSemaphore) Then result := false; + SDL_DestroySemaphore := TSDL_DestroySemaphore_proc(GetProcAddress(LibHandle, 'SDL_DestroySemaphore')); + If Not assigned(SDL_DestroySemaphore) Then result := false; + SDL_SemWait := TSDL_SemWait_func(GetProcAddress(LibHandle, 'SDL_SemWait')); + If Not assigned(SDL_SemWait) Then result := false; + SDL_SemTryWait := TSDL_SemTryWait_func(GetProcAddress(LibHandle, 'SDL_SemTryWait')); + If Not assigned(SDL_SemTryWait) Then result := false; + SDL_SemWaitTimeout := TSDL_SemWaitTimeout_func(GetProcAddress(LibHandle, 'SDL_SemWaitTimeout')); + If Not assigned(SDL_SemWaitTimeout) Then result := false; + SDL_SemPost := TSDL_SemPost_func(GetProcAddress(LibHandle, 'SDL_SemPost')); + If Not assigned(SDL_SemPost) Then result := false; + SDL_SemValue := TSDL_SemValue_func(GetProcAddress(LibHandle, 'SDL_SemValue')); + If Not assigned(SDL_SemValue) Then result := false; + SDL_DestroyCond := TSDL_DestroyCond_proc(GetProcAddress(LibHandle, 'SDL_DestroyCond')); + If Not assigned(SDL_DestroyCond) Then result := false; + SDL_CondSignal := TSDL_CondSignal_func(GetProcAddress(LibHandle, 'SDL_CondSignal')); + If Not assigned(SDL_CondSignal) Then result := false; + SDL_CondBroadcast := TSDL_CondBroadcast_func(GetProcAddress(LibHandle, 'SDL_CondBroadcast')); + If Not assigned(SDL_CondBroadcast) Then result := false; + SDL_CondWait := TSDL_CondWait_func(GetProcAddress(LibHandle, 'SDL_CondWait')); + If Not assigned(SDL_CondWait) Then result := false; + SDL_CondWaitTimeout := TSDL_CondWaitTimeout_func(GetProcAddress(LibHandle, 'SDL_CondWaitTimeout')); + If Not assigned(SDL_CondWaitTimeout) Then result := false; + SDL_GetPixelFormatName := TSDL_GetPixelFormatName_func(GetProcAddress(LibHandle, 'SDL_GetPixelFormatName')); + If Not assigned(SDL_GetPixelFormatName) Then result := false; + SDL_PixelFormatEnumToMasks := TSDL_PixelFormatEnumToMasks_func(GetProcAddress(LibHandle, 'SDL_PixelFormatEnumToMasks')); + If Not assigned(SDL_PixelFormatEnumToMasks) Then result := false; + SDL_MasksToPixelFormatEnum := TSDL_MasksToPixelFormatEnum_func(GetProcAddress(LibHandle, 'SDL_MasksToPixelFormatEnum')); + If Not assigned(SDL_MasksToPixelFormatEnum) Then result := false; + SDL_AllocFormat := TSDL_AllocFormat_func(GetProcAddress(LibHandle, 'SDL_AllocFormat')); + If Not assigned(SDL_AllocFormat) Then result := false; + SDL_FreeFormat := TSDL_FreeFormat_proc(GetProcAddress(LibHandle, 'SDL_FreeFormat')); + If Not assigned(SDL_FreeFormat) Then result := false; + SDL_AllocPalette := TSDL_AllocPalette_func(GetProcAddress(LibHandle, 'SDL_AllocPalette')); + If Not assigned(SDL_AllocPalette) Then result := false; + SDL_SetPixelFormatPalette := TSDL_SetPixelFormatPalette_func(GetProcAddress(LibHandle, 'SDL_SetPixelFormatPalette')); + If Not assigned(SDL_SetPixelFormatPalette) Then result := false; + SDL_SetPaletteColors := TSDL_SetPaletteColors_func(GetProcAddress(LibHandle, 'SDL_SetPaletteColors')); + If Not assigned(SDL_SetPaletteColors) Then result := false; + SDL_FreePalette := TSDL_FreePalette_proc(GetProcAddress(LibHandle, 'SDL_FreePalette')); + If Not assigned(SDL_FreePalette) Then result := false; + SDL_MapRGB := TSDL_MapRGB_func(GetProcAddress(LibHandle, 'SDL_MapRGB')); + If Not assigned(SDL_MapRGB) Then result := false; + SDL_MapRGBA := TSDL_MapRGBA_func(GetProcAddress(LibHandle, 'SDL_MapRGBA')); + If Not assigned(SDL_MapRGBA) Then result := false; + SDL_GetRGB := TSDL_GetRGB_proc(GetProcAddress(LibHandle, 'SDL_GetRGB')); + If Not assigned(SDL_GetRGB) Then result := false; + SDL_GetRGBA := TSDL_GetRGBA_proc(GetProcAddress(LibHandle, 'SDL_GetRGBA')); + If Not assigned(SDL_GetRGBA) Then result := false; + SDL_CalculateGammaRamp := TSDL_CalculateGammaRamp_proc(GetProcAddress(LibHandle, 'SDL_CalculateGammaRamp')); + If Not assigned(SDL_CalculateGammaRamp) Then result := false; + SDL_GetPowerInfo := TSDL_GetPowerInfo_func(GetProcAddress(LibHandle, 'SDL_GetPowerInfo')); + If Not assigned(SDL_GetPowerInfo) Then result := false; + SDL_HasIntersection := TSDL_HasIntersection_func(GetProcAddress(LibHandle, 'SDL_HasIntersection')); + If Not assigned(SDL_HasIntersection) Then result := false; + SDL_IntersectRect := TSDL_IntersectRect_func(GetProcAddress(LibHandle, 'SDL_IntersectRect')); + If Not assigned(SDL_IntersectRect) Then result := false; + SDL_UnionRect := TSDL_UnionRect_proc(GetProcAddress(LibHandle, 'SDL_UnionRect')); + If Not assigned(SDL_UnionRect) Then result := false; + SDL_EnclosePoints := TSDL_EnclosePoints_func(GetProcAddress(LibHandle, 'SDL_EnclosePoints')); + If Not assigned(SDL_EnclosePoints) Then result := false; + SDL_IntersectRectAndLine := TSDL_IntersectRectAndLine_func(GetProcAddress(LibHandle, 'SDL_IntersectRectAndLine')); + If Not assigned(SDL_IntersectRectAndLine) Then result := false; + SDL_HasIntersectionF := TSDL_HasIntersectionF_func(GetProcAddress(LibHandle, 'SDL_HasIntersectionF')); + If Not assigned(SDL_HasIntersectionF) Then result := false; + SDL_IntersectFRect := TSDL_IntersectFRect_func(GetProcAddress(LibHandle, 'SDL_IntersectFRect')); + If Not assigned(SDL_IntersectFRect) Then result := false; + SDL_UnionFRect := TSDL_UnionFRect_func(GetProcAddress(LibHandle, 'SDL_UnionFRect')); + If Not assigned(SDL_UnionFRect) Then result := false; + SDL_EncloseFPoints := TSDL_EncloseFPoints_func(GetProcAddress(LibHandle, 'SDL_EncloseFPoints')); + If Not assigned(SDL_EncloseFPoints) Then result := false; + SDL_IntersectFRectAndLine := TSDL_IntersectFRectAndLine_func(GetProcAddress(LibHandle, 'SDL_IntersectFRectAndLine')); + If Not assigned(SDL_IntersectFRectAndLine) Then result := false; + SDL_LockTexture := TSDL_LockTexture_func(GetProcAddress(LibHandle, 'SDL_LockTexture')); + If Not assigned(SDL_LockTexture) Then result := false; + SDL_LockTextureToSurface := TSDL_LockTextureToSurface_func(GetProcAddress(LibHandle, 'SDL_LockTextureToSurface')); + If Not assigned(SDL_LockTextureToSurface) Then result := false; + SDL_RenderIsClipEnabled := TSDL_RenderIsClipEnabled_func(GetProcAddress(LibHandle, 'SDL_RenderIsClipEnabled')); + If Not assigned(SDL_RenderIsClipEnabled) Then result := false; + SDL_RenderDrawPointF := TSDL_RenderDrawPointF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawPointF')); + If Not assigned(SDL_RenderDrawPointF) Then result := false; + SDL_RenderDrawPointsF := TSDL_RenderDrawPointsF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawPointsF')); + If Not assigned(SDL_RenderDrawPointsF) Then result := false; + SDL_RenderDrawLineF := TSDL_RenderDrawLineF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawLineF')); + If Not assigned(SDL_RenderDrawLineF) Then result := false; + SDL_RenderDrawLinesF := TSDL_RenderDrawLinesF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawLinesF')); + If Not assigned(SDL_RenderDrawLinesF) Then result := false; + SDL_RenderDrawRectF := TSDL_RenderDrawRectF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawRectF')); + If Not assigned(SDL_RenderDrawRectF) Then result := false; + SDL_RenderDrawRectsF := TSDL_RenderDrawRectsF_func(GetProcAddress(LibHandle, 'SDL_RenderDrawRectsF')); + If Not assigned(SDL_RenderDrawRectsF) Then result := false; + SDL_RenderFillRectF := TSDL_RenderFillRectF_func(GetProcAddress(LibHandle, 'SDL_RenderFillRectF')); + If Not assigned(SDL_RenderFillRectF) Then result := false; + SDL_RenderFillRectsF := TSDL_RenderFillRectsF_func(GetProcAddress(LibHandle, 'SDL_RenderFillRectsF')); + If Not assigned(SDL_RenderFillRectsF) Then result := false; + SDL_RenderCopyF := TSDL_RenderCopyF_func(GetProcAddress(LibHandle, 'SDL_RenderCopyF')); + If Not assigned(SDL_RenderCopyF) Then result := false; + SDL_RenderCopyExF := TSDL_RenderCopyExF_func(GetProcAddress(LibHandle, 'SDL_RenderCopyExF')); + If Not assigned(SDL_RenderCopyExF) Then result := false; + SDL_RenderGetMetalLayer := TSDL_RenderGetMetalLayer_func(GetProcAddress(LibHandle, 'SDL_RenderGetMetalLayer')); + If Not assigned(SDL_RenderGetMetalLayer) Then result := false; + SDL_RenderGetMetalCommandEncoder := TSDL_RenderGetMetalCommandEncoder_func(GetProcAddress(LibHandle, 'SDL_RenderGetMetalCommandEncoder')); + If Not assigned(SDL_RenderGetMetalCommandEncoder) Then result := false; + SDL_UpdateYUVTexture := TSDL_UpdateYUVTexture_func(GetProcAddress(LibHandle, 'SDL_UpdateYUVTexture')); + If Not assigned(SDL_UpdateYUVTexture) Then result := false; + SDL_RWFromFile := TSDL_RWFromFile_func(GetProcAddress(LibHandle, 'SDL_RWFromFile')); + If Not assigned(SDL_RWFromFile) Then result := false; + SDL_RWFromFP := TSDL_RWFromFP_func(GetProcAddress(LibHandle, 'SDL_RWFromFP')); + If Not assigned(SDL_RWFromFP) Then result := false; + SDL_RWFromMem := TSDL_RWFromMem_func(GetProcAddress(LibHandle, 'SDL_RWFromMem')); + If Not assigned(SDL_RWFromMem) Then result := false; + SDL_RWFromConstMem := TSDL_RWFromConstMem_func(GetProcAddress(LibHandle, 'SDL_RWFromConstMem')); + If Not assigned(SDL_RWFromConstMem) Then result := false; + SDL_FreeRW := TSDL_FreeRW_proc(GetProcAddress(LibHandle, 'SDL_FreeRW')); + If Not assigned(SDL_FreeRW) Then result := false; + SDL_RWsize := TSDL_RWsize_func(GetProcAddress(LibHandle, 'SDL_RWsize')); + If Not assigned(SDL_RWsize) Then result := false; + SDL_RWseek := TSDL_RWseek_func(GetProcAddress(LibHandle, 'SDL_RWseek')); + If Not assigned(SDL_RWseek) Then result := false; + SDL_RWtell := TSDL_RWtell_func(GetProcAddress(LibHandle, 'SDL_RWtell')); + If Not assigned(SDL_RWtell) Then result := false; + SDL_RWread := TSDL_RWread_func(GetProcAddress(LibHandle, 'SDL_RWread')); + If Not assigned(SDL_RWread) Then result := false; + SDL_RWwrite := TSDL_RWwrite_func(GetProcAddress(LibHandle, 'SDL_RWwrite')); + If Not assigned(SDL_RWwrite) Then result := false; + SDL_RWclose := TSDL_RWclose_func(GetProcAddress(LibHandle, 'SDL_RWclose')); + If Not assigned(SDL_RWclose) Then result := false; + SDL_LoadFile_RW := TSDL_LoadFile_RW_func(GetProcAddress(LibHandle, 'SDL_LoadFile_RW')); + If Not assigned(SDL_LoadFile_RW) Then result := false; + SDL_LoadFile := TSDL_LoadFile_func(GetProcAddress(LibHandle, 'SDL_LoadFile')); + If Not assigned(SDL_LoadFile) Then result := false; + SDL_ReadU8 := TSDL_ReadU8_func(GetProcAddress(LibHandle, 'SDL_ReadU8')); + If Not assigned(SDL_ReadU8) Then result := false; + SDL_ReadLE16 := TSDL_ReadLE16_func(GetProcAddress(LibHandle, 'SDL_ReadLE16')); + If Not assigned(SDL_ReadLE16) Then result := false; + SDL_ReadBE16 := TSDL_ReadBE16_func(GetProcAddress(LibHandle, 'SDL_ReadBE16')); + If Not assigned(SDL_ReadBE16) Then result := false; + SDL_ReadLE32 := TSDL_ReadLE32_func(GetProcAddress(LibHandle, 'SDL_ReadLE32')); + If Not assigned(SDL_ReadLE32) Then result := false; + SDL_ReadBE32 := TSDL_ReadBE32_func(GetProcAddress(LibHandle, 'SDL_ReadBE32')); + If Not assigned(SDL_ReadBE32) Then result := false; + SDL_ReadLE64 := TSDL_ReadLE64_func(GetProcAddress(LibHandle, 'SDL_ReadLE64')); + If Not assigned(SDL_ReadLE64) Then result := false; + SDL_ReadBE64 := TSDL_ReadBE64_func(GetProcAddress(LibHandle, 'SDL_ReadBE64')); + If Not assigned(SDL_ReadBE64) Then result := false; + SDL_WriteU8 := TSDL_WriteU8_func(GetProcAddress(LibHandle, 'SDL_WriteU8')); + If Not assigned(SDL_WriteU8) Then result := false; + SDL_WriteLE16 := TSDL_WriteLE16_func(GetProcAddress(LibHandle, 'SDL_WriteLE16')); + If Not assigned(SDL_WriteLE16) Then result := false; + SDL_WriteBE16 := TSDL_WriteBE16_func(GetProcAddress(LibHandle, 'SDL_WriteBE16')); + If Not assigned(SDL_WriteBE16) Then result := false; + SDL_WriteLE32 := TSDL_WriteLE32_func(GetProcAddress(LibHandle, 'SDL_WriteLE32')); + If Not assigned(SDL_WriteLE32) Then result := false; + SDL_WriteBE32 := TSDL_WriteBE32_func(GetProcAddress(LibHandle, 'SDL_WriteBE32')); + If Not assigned(SDL_WriteBE32) Then result := false; + SDL_WriteLE64 := TSDL_WriteLE64_func(GetProcAddress(LibHandle, 'SDL_WriteLE64')); + If Not assigned(SDL_WriteLE64) Then result := false; + SDL_WriteBE64 := TSDL_WriteBE64_func(GetProcAddress(LibHandle, 'SDL_WriteBE64')); + If Not assigned(SDL_WriteBE64) Then result := false; + SDL_CreateShapedWindow := TSDL_CreateShapedWindow_func(GetProcAddress(LibHandle, 'SDL_CreateShapedWindow')); + If Not assigned(SDL_CreateShapedWindow) Then result := false; + SDL_IsShapedWindow := TSDL_IsShapedWindow_func(GetProcAddress(LibHandle, 'SDL_IsShapedWindow')); + If Not assigned(SDL_IsShapedWindow) Then result := false; + SDL_SetWindowShape := TSDL_SetWindowShape_func(GetProcAddress(LibHandle, 'SDL_SetWindowShape')); + If Not assigned(SDL_SetWindowShape) Then result := false; + SDL_GetShapedWindowMode := TSDL_GetShapedWindowMode_func(GetProcAddress(LibHandle, 'SDL_GetShapedWindowMode')); + If Not assigned(SDL_GetShapedWindowMode) Then result := false; + SDL_GetNumAllocations := TSDL_GetNumAllocations_func(GetProcAddress(LibHandle, 'SDL_GetNumAllocations')); + If Not assigned(SDL_GetNumAllocations) Then result := false; + SDL_malloc := TSDL_malloc_func(GetProcAddress(LibHandle, 'SDL_malloc')); + If Not assigned(SDL_malloc) Then result := false; + SDL_calloc := TSDL_calloc_func(GetProcAddress(LibHandle, 'SDL_calloc')); + If Not assigned(SDL_calloc) Then result := false; + SDL_realloc := TSDL_realloc_func(GetProcAddress(LibHandle, 'SDL_realloc')); + If Not assigned(SDL_realloc) Then result := false; + SDL_free := TSDL_free_proc(GetProcAddress(LibHandle, 'SDL_free')); + If Not assigned(SDL_free) Then result := false; + SDL_isalpha := TSDL_isalpha_func(GetProcAddress(LibHandle, 'SDL_isalpha')); + If Not assigned(SDL_isalpha) Then result := false; + SDL_isalnum := TSDL_isalnum_func(GetProcAddress(LibHandle, 'SDL_isalnum')); + If Not assigned(SDL_isalnum) Then result := false; + SDL_isblank := TSDL_isblank_func(GetProcAddress(LibHandle, 'SDL_isblank')); + If Not assigned(SDL_isblank) Then result := false; + SDL_iscntrl := TSDL_iscntrl_func(GetProcAddress(LibHandle, 'SDL_iscntrl')); + If Not assigned(SDL_iscntrl) Then result := false; + SDL_isdigit := TSDL_isdigit_func(GetProcAddress(LibHandle, 'SDL_isdigit')); + If Not assigned(SDL_isdigit) Then result := false; + SDL_isxdigit := TSDL_isxdigit_func(GetProcAddress(LibHandle, 'SDL_isxdigit')); + If Not assigned(SDL_isxdigit) Then result := false; + SDL_ispunct := TSDL_ispunct_func(GetProcAddress(LibHandle, 'SDL_ispunct')); + If Not assigned(SDL_ispunct) Then result := false; + SDL_isspace := TSDL_isspace_func(GetProcAddress(LibHandle, 'SDL_isspace')); + If Not assigned(SDL_isspace) Then result := false; + SDL_isupper := TSDL_isupper_func(GetProcAddress(LibHandle, 'SDL_isupper')); + If Not assigned(SDL_isupper) Then result := false; + SDL_islower := TSDL_islower_func(GetProcAddress(LibHandle, 'SDL_islower')); + If Not assigned(SDL_islower) Then result := false; + SDL_isprint := TSDL_isprint_func(GetProcAddress(LibHandle, 'SDL_isprint')); + If Not assigned(SDL_isprint) Then result := false; + SDL_isgraph := TSDL_isgraph_func(GetProcAddress(LibHandle, 'SDL_isgraph')); + If Not assigned(SDL_isgraph) Then result := false; + SDL_toupper := TSDL_toupper_func(GetProcAddress(LibHandle, 'SDL_toupper')); + If Not assigned(SDL_toupper) Then result := false; + SDL_tolower := TSDL_tolower_func(GetProcAddress(LibHandle, 'SDL_tolower')); + If Not assigned(SDL_tolower) Then result := false; + SDL_acos := TSDL_acos_func(GetProcAddress(LibHandle, 'SDL_acos')); + If Not assigned(SDL_acos) Then result := false; + SDL_acosf := TSDL_acosf_func(GetProcAddress(LibHandle, 'SDL_acosf')); + If Not assigned(SDL_acosf) Then result := false; + SDL_asin := TSDL_asin_func(GetProcAddress(LibHandle, 'SDL_asin')); + If Not assigned(SDL_asin) Then result := false; + SDL_asinf := TSDL_asinf_func(GetProcAddress(LibHandle, 'SDL_asinf')); + If Not assigned(SDL_asinf) Then result := false; + SDL_atan := TSDL_atan_func(GetProcAddress(LibHandle, 'SDL_atan')); + If Not assigned(SDL_atan) Then result := false; + SDL_atanf := TSDL_atanf_func(GetProcAddress(LibHandle, 'SDL_atanf')); + If Not assigned(SDL_atanf) Then result := false; + SDL_atan2 := TSDL_atan2_func(GetProcAddress(LibHandle, 'SDL_atan2')); + If Not assigned(SDL_atan2) Then result := false; + SDL_atan2f := TSDL_atan2f_func(GetProcAddress(LibHandle, 'SDL_atan2f')); + If Not assigned(SDL_atan2f) Then result := false; + SDL_ceil := TSDL_ceil_func(GetProcAddress(LibHandle, 'SDL_ceil')); + If Not assigned(SDL_ceil) Then result := false; + SDL_ceilf := TSDL_ceilf_func(GetProcAddress(LibHandle, 'SDL_ceilf')); + If Not assigned(SDL_ceilf) Then result := false; + SDL_copysign := TSDL_copysign_func(GetProcAddress(LibHandle, 'SDL_copysign')); + If Not assigned(SDL_copysign) Then result := false; + SDL_copysignf := TSDL_copysignf_func(GetProcAddress(LibHandle, 'SDL_copysignf')); + If Not assigned(SDL_copysignf) Then result := false; + SDL_cos := TSDL_cos_func(GetProcAddress(LibHandle, 'SDL_cos')); + If Not assigned(SDL_cos) Then result := false; + SDL_cosf := TSDL_cosf_func(GetProcAddress(LibHandle, 'SDL_cosf')); + If Not assigned(SDL_cosf) Then result := false; + SDL_exp := TSDL_exp_func(GetProcAddress(LibHandle, 'SDL_exp')); + If Not assigned(SDL_exp) Then result := false; + SDL_expf := TSDL_expf_func(GetProcAddress(LibHandle, 'SDL_expf')); + If Not assigned(SDL_expf) Then result := false; + SDL_fabs := TSDL_fabs_func(GetProcAddress(LibHandle, 'SDL_fabs')); + If Not assigned(SDL_fabs) Then result := false; + SDL_fabsf := TSDL_fabsf_func(GetProcAddress(LibHandle, 'SDL_fabsf')); + If Not assigned(SDL_fabsf) Then result := false; + SDL_floor := TSDL_floor_func(GetProcAddress(LibHandle, 'SDL_floor')); + If Not assigned(SDL_floor) Then result := false; + SDL_floorf := TSDL_floorf_func(GetProcAddress(LibHandle, 'SDL_floorf')); + If Not assigned(SDL_floorf) Then result := false; + SDL_fmod := TSDL_fmod_func(GetProcAddress(LibHandle, 'SDL_fmod')); + If Not assigned(SDL_fmod) Then result := false; + SDL_fmodf := TSDL_fmodf_func(GetProcAddress(LibHandle, 'SDL_fmodf')); + If Not assigned(SDL_fmodf) Then result := false; + SDL_nlog := TSDL_nlog_func(GetProcAddress(LibHandle, 'SDL_nlog')); + If Not assigned(SDL_nlog) Then result := false; + SDL_nlogf := TSDL_nlogf_func(GetProcAddress(LibHandle, 'SDL_nlogf')); + If Not assigned(SDL_nlogf) Then result := false; + SDL_log10 := TSDL_log10_func(GetProcAddress(LibHandle, 'SDL_log10')); + If Not assigned(SDL_log10) Then result := false; + SDL_log10f := TSDL_log10f_func(GetProcAddress(LibHandle, 'SDL_log10f')); + If Not assigned(SDL_log10f) Then result := false; + SDL_lround := TSDL_lround_func(GetProcAddress(LibHandle, 'SDL_lround')); + If Not assigned(SDL_lround) Then result := false; + SDL_lroundf := TSDL_lroundf_func(GetProcAddress(LibHandle, 'SDL_lroundf')); + If Not assigned(SDL_lroundf) Then result := false; + SDL_pow := TSDL_pow_func(GetProcAddress(LibHandle, 'SDL_pow')); + If Not assigned(SDL_pow) Then result := false; + SDL_powf := TSDL_powf_func(GetProcAddress(LibHandle, 'SDL_powf')); + If Not assigned(SDL_powf) Then result := false; + SDL_round := TSDL_round_func(GetProcAddress(LibHandle, 'SDL_round')); + If Not assigned(SDL_round) Then result := false; + SDL_roundf := TSDL_roundf_func(GetProcAddress(LibHandle, 'SDL_roundf')); + If Not assigned(SDL_roundf) Then result := false; + SDL_scalbn := TSDL_scalbn_func(GetProcAddress(LibHandle, 'SDL_scalbn')); + If Not assigned(SDL_scalbn) Then result := false; + SDL_scalbnf := TSDL_scalbnf_func(GetProcAddress(LibHandle, 'SDL_scalbnf')); + If Not assigned(SDL_scalbnf) Then result := false; + SDL_sin := TSDL_sin_func(GetProcAddress(LibHandle, 'SDL_sin')); + If Not assigned(SDL_sin) Then result := false; + SDL_sinf := TSDL_sinf_func(GetProcAddress(LibHandle, 'SDL_sinf')); + If Not assigned(SDL_sinf) Then result := false; + SDL_sqrt := TSDL_sqrt_func(GetProcAddress(LibHandle, 'SDL_sqrt')); + If Not assigned(SDL_sqrt) Then result := false; + SDL_sqrtf := TSDL_sqrtf_func(GetProcAddress(LibHandle, 'SDL_sqrtf')); + If Not assigned(SDL_sqrtf) Then result := false; + SDL_tan := TSDL_tan_func(GetProcAddress(LibHandle, 'SDL_tan')); + If Not assigned(SDL_tan) Then result := false; + SDL_tanf := TSDL_tanf_func(GetProcAddress(LibHandle, 'SDL_tanf')); + If Not assigned(SDL_tanf) Then result := false; + SDL_trunc := TSDL_trunc_func(GetProcAddress(LibHandle, 'SDL_trunc')); + If Not assigned(SDL_trunc) Then result := false; + SDL_truncf := TSDL_truncf_func(GetProcAddress(LibHandle, 'SDL_truncf')); + If Not assigned(SDL_truncf) Then result := false; + SDL_iconv_string := TSDL_iconv_string_func(GetProcAddress(LibHandle, 'SDL_iconv_string')); + If Not assigned(SDL_iconv_string) Then result := false; + SDL_iconv_open := TSDL_iconv_open_func(GetProcAddress(LibHandle, 'SDL_iconv_open')); + If Not assigned(SDL_iconv_open) Then result := false; + SDL_iconv_close := TSDL_iconv_close_func(GetProcAddress(LibHandle, 'SDL_iconv_close')); + If Not assigned(SDL_iconv_close) Then result := false; + SDL_iconv := TSDL_iconv_func(GetProcAddress(LibHandle, 'SDL_iconv')); + If Not assigned(SDL_iconv) Then result := false; + SDL_CreateRGBSurface := TSDL_CreateRGBSurface_func(GetProcAddress(LibHandle, 'SDL_CreateRGBSurface')); + If Not assigned(SDL_CreateRGBSurface) Then result := false; + SDL_CreateRGBSurfaceWithFormat := TSDL_CreateRGBSurfaceWithFormat_func(GetProcAddress(LibHandle, 'SDL_CreateRGBSurfaceWithFormat')); + If Not assigned(SDL_CreateRGBSurfaceWithFormat) Then result := false; + SDL_CreateRGBSurfaceFrom := TSDL_CreateRGBSurfaceFrom_func(GetProcAddress(LibHandle, 'SDL_CreateRGBSurfaceFrom')); + If Not assigned(SDL_CreateRGBSurfaceFrom) Then result := false; + SDL_CreateRGBSurfaceWithFormatFrom := TSDL_CreateRGBSurfaceWithFormatFrom_func(GetProcAddress(LibHandle, 'SDL_CreateRGBSurfaceWithFormatFrom')); + If Not assigned(SDL_CreateRGBSurfaceWithFormatFrom) Then result := false; + SDL_FreeSurface := TSDL_FreeSurface_proc(GetProcAddress(LibHandle, 'SDL_FreeSurface')); + If Not assigned(SDL_FreeSurface) Then result := false; + SDL_SetSurfacePalette := TSDL_SetSurfacePalette_func(GetProcAddress(LibHandle, 'SDL_SetSurfacePalette')); + If Not assigned(SDL_SetSurfacePalette) Then result := false; + SDL_LockSurface := TSDL_LockSurface_func(GetProcAddress(LibHandle, 'SDL_LockSurface')); + If Not assigned(SDL_LockSurface) Then result := false; + SDL_UnlockSurface := TSDL_UnlockSurface_proc(GetProcAddress(LibHandle, 'SDL_UnlockSurface')); + If Not assigned(SDL_UnlockSurface) Then result := false; + SDL_LoadBMP_RW := TSDL_LoadBMP_RW_func(GetProcAddress(LibHandle, 'SDL_LoadBMP_RW')); + If Not assigned(SDL_LoadBMP_RW) Then result := false; + SDL_SaveBMP_RW := TSDL_SaveBMP_RW_func(GetProcAddress(LibHandle, 'SDL_SaveBMP_RW')); + If Not assigned(SDL_SaveBMP_RW) Then result := false; + SDL_SetSurfaceRLE := TSDL_SetSurfaceRLE_func(GetProcAddress(LibHandle, 'SDL_SetSurfaceRLE')); + If Not assigned(SDL_SetSurfaceRLE) Then result := false; + SDL_HasSurfaceRLE := TSDL_HasSurfaceRLE_func(GetProcAddress(LibHandle, 'SDL_HasSurfaceRLE')); + If Not assigned(SDL_HasSurfaceRLE) Then result := false; + SDL_SetColorKey := TSDL_SetColorKey_func(GetProcAddress(LibHandle, 'SDL_SetColorKey')); + If Not assigned(SDL_SetColorKey) Then result := false; + SDL_HasColorKey := TSDL_HasColorKey_func(GetProcAddress(LibHandle, 'SDL_HasColorKey')); + If Not assigned(SDL_HasColorKey) Then result := false; + SDL_GetColorKey := TSDL_GetColorKey_func(GetProcAddress(LibHandle, 'SDL_GetColorKey')); + If Not assigned(SDL_GetColorKey) Then result := false; + SDL_SetSurfaceColorMod := TSDL_SetSurfaceColorMod_func(GetProcAddress(LibHandle, 'SDL_SetSurfaceColorMod')); + If Not assigned(SDL_SetSurfaceColorMod) Then result := false; + SDL_GetSurfaceColorMod := TSDL_GetSurfaceColorMod_func(GetProcAddress(LibHandle, 'SDL_GetSurfaceColorMod')); + If Not assigned(SDL_GetSurfaceColorMod) Then result := false; + SDL_SetSurfaceAlphaMod := TSDL_SetSurfaceAlphaMod_func(GetProcAddress(LibHandle, 'SDL_SetSurfaceAlphaMod')); + If Not assigned(SDL_SetSurfaceAlphaMod) Then result := false; + SDL_GetSurfaceAlphaMod := TSDL_GetSurfaceAlphaMod_func(GetProcAddress(LibHandle, 'SDL_GetSurfaceAlphaMod')); + If Not assigned(SDL_GetSurfaceAlphaMod) Then result := false; + SDL_SetSurfaceBlendMode := TSDL_SetSurfaceBlendMode_func(GetProcAddress(LibHandle, 'SDL_SetSurfaceBlendMode')); + If Not assigned(SDL_SetSurfaceBlendMode) Then result := false; + SDL_GetSurfaceBlendMode := TSDL_GetSurfaceBlendMode_func(GetProcAddress(LibHandle, 'SDL_GetSurfaceBlendMode')); + If Not assigned(SDL_GetSurfaceBlendMode) Then result := false; + SDL_SetClipRect := TSDL_SetClipRect_func(GetProcAddress(LibHandle, 'SDL_SetClipRect')); + If Not assigned(SDL_SetClipRect) Then result := false; + SDL_GetClipRect := TSDL_GetClipRect_proc(GetProcAddress(LibHandle, 'SDL_GetClipRect')); + If Not assigned(SDL_GetClipRect) Then result := false; + SDL_DuplicateSurface := TSDL_DuplicateSurface_func(GetProcAddress(LibHandle, 'SDL_DuplicateSurface')); + If Not assigned(SDL_DuplicateSurface) Then result := false; + SDL_ConvertSurface := TSDL_ConvertSurface_func(GetProcAddress(LibHandle, 'SDL_ConvertSurface')); + If Not assigned(SDL_ConvertSurface) Then result := false; + SDL_ConvertSurfaceFormat := TSDL_ConvertSurfaceFormat_func(GetProcAddress(LibHandle, 'SDL_ConvertSurfaceFormat')); + If Not assigned(SDL_ConvertSurfaceFormat) Then result := false; + SDL_ConvertPixels := TSDL_ConvertPixels_func(GetProcAddress(LibHandle, 'SDL_ConvertPixels')); + If Not assigned(SDL_ConvertPixels) Then result := false; + SDL_FillRect := TSDL_FillRect_func(GetProcAddress(LibHandle, 'SDL_FillRect')); + If Not assigned(SDL_FillRect) Then result := false; + SDL_FillRects := TSDL_FillRects_func(GetProcAddress(LibHandle, 'SDL_FillRects')); + If Not assigned(SDL_FillRects) Then result := false; + SDL_BlitSurface := TSDL_BlitSurface_func(GetProcAddress(LibHandle, 'SDL_BlitSurface')); + If Not assigned(SDL_BlitSurface) Then result := false; + SDL_UpperBlit := TSDL_UpperBlit_func(GetProcAddress(LibHandle, 'SDL_UpperBlit')); + If Not assigned(SDL_UpperBlit) Then result := false; + SDL_LowerBlit := TSDL_LowerBlit_func(GetProcAddress(LibHandle, 'SDL_LowerBlit')); + If Not assigned(SDL_LowerBlit) Then result := false; + SDL_SoftStretch := TSDL_SoftStretch_func(GetProcAddress(LibHandle, 'SDL_SoftStretch')); + If Not assigned(SDL_SoftStretch) Then result := false; + SDL_BlitSurfaceScaled := TSDL_BlitSurfaceScaled_func(GetProcAddress(LibHandle, 'SDL_BlitSurfaceScaled')); + If Not assigned(SDL_BlitSurfaceScaled) Then result := false; + SDL_UpperBlitScaled := TSDL_UpperBlitScaled_func(GetProcAddress(LibHandle, 'SDL_UpperBlitScaled')); + If Not assigned(SDL_UpperBlitScaled) Then result := false; + SDL_LowerBlitScaled := TSDL_LowerBlitScaled_func(GetProcAddress(LibHandle, 'SDL_LowerBlitScaled')); + If Not assigned(SDL_LowerBlitScaled) Then result := false; + SDL_SetYUVConversionMode := TSDL_SetYUVConversionMode_proc(GetProcAddress(LibHandle, 'SDL_SetYUVConversionMode')); + If Not assigned(SDL_SetYUVConversionMode) Then result := false; + SDL_GetYUVConversionModeForResolution := TSDL_GetYUVConversionModeForResolution_func(GetProcAddress(LibHandle, 'SDL_GetYUVConversionModeForResolution')); + If Not assigned(SDL_GetYUVConversionModeForResolution) Then result := false; + SDL_SetWindowsMessageHook := TSDL_SetWindowsMessageHook_proc(GetProcAddress(LibHandle, 'SDL_SetWindowsMessageHook')); + If Not assigned(SDL_SetWindowsMessageHook) Then result := false; + SDL_Direct3D9GetAdapterIndex := TSDL_Direct3D9GetAdapterIndex_func(GetProcAddress(LibHandle, 'SDL_Direct3D9GetAdapterIndex')); + If Not assigned(SDL_Direct3D9GetAdapterIndex) Then result := false; + SDL_RenderGetD3D9Device := TSDL_RenderGetD3D9Device_func(GetProcAddress(LibHandle, 'SDL_RenderGetD3D9Device')); + If Not assigned(SDL_RenderGetD3D9Device) Then result := false; + SDL_RenderGetD3D11Device := TSDL_RenderGetD3D11Device_func(GetProcAddress(LibHandle, 'SDL_RenderGetD3D11Device')); + If Not assigned(SDL_RenderGetD3D11Device) Then result := false; + SDL_RenderGetD3D12Device := TSDL_RenderGetD3D12Device_func(GetProcAddress(LibHandle, 'SDL_RenderGetD3D12Device')); + If Not assigned(SDL_RenderGetD3D12Device) Then result := false; + SDL_DXGIGetOutputInfo := TSDL_DXGIGetOutputInfo_func(GetProcAddress(LibHandle, 'SDL_DXGIGetOutputInfo')); + If Not assigned(SDL_DXGIGetOutputInfo) Then result := false; //*) +{$IFDEF LINUX} + SDL_LinuxSetThreadPriority := TSDL_LinuxSetThreadPriority_func(GetProcAddress(LibHandle, 'SDL_LinuxSetThreadPriority')); + If Not assigned(SDL_LinuxSetThreadPriority) Then result := false; + SDL_LinuxSetThreadPriorityAndPolicy := TSDL_LinuxSetThreadPriorityAndPolicy_func(GetProcAddress(LibHandle, 'SDL_LinuxSetThreadPriorityAndPolicy')); + If Not assigned(SDL_LinuxSetThreadPriorityAndPolicy) Then result := false; +{$IFDEF Windows} + SDL_iPhoneSetAnimationCallback := TSDL_iPhoneSetAnimationCallback_func(GetProcAddress(LibHandle, 'SDL_iPhoneSetAnimationCallback')); + If Not assigned(SDL_iPhoneSetAnimationCallback) Then result := false; + SDL_iPhoneSetEventPump := TSDL_iPhoneSetEventPump_proc(GetProcAddress(LibHandle, 'SDL_iPhoneSetEventPump')); + If Not assigned(SDL_iPhoneSetEventPump) Then result := false; + SDL_AndroidGetJNIEnv := TSDL_AndroidGetJNIEnv_func(GetProcAddress(LibHandle, 'SDL_AndroidGetJNIEnv')); + If Not assigned(SDL_AndroidGetJNIEnv) Then result := false; + SDL_AndroidGetActivity := TSDL_AndroidGetActivity_func(GetProcAddress(LibHandle, 'SDL_AndroidGetActivity')); + If Not assigned(SDL_AndroidGetActivity) Then result := false; + SDL_GetAndroidSDKVersion := TSDL_GetAndroidSDKVersion_func(GetProcAddress(LibHandle, 'SDL_GetAndroidSDKVersion')); + If Not assigned(SDL_GetAndroidSDKVersion) Then result := false; + SDL_IsAndroidTV := TSDL_IsAndroidTV_func(GetProcAddress(LibHandle, 'SDL_IsAndroidTV')); + If Not assigned(SDL_IsAndroidTV) Then result := false; + SDL_IsChromebook := TSDL_IsChromebook_func(GetProcAddress(LibHandle, 'SDL_IsChromebook')); + If Not assigned(SDL_IsChromebook) Then result := false; + SDL_IsDeXMode := TSDL_IsDeXMode_func(GetProcAddress(LibHandle, 'SDL_IsDeXMode')); + If Not assigned(SDL_IsDeXMode) Then result := false; + SDL_AndroidBackButton := TSDL_AndroidBackButton_proc(GetProcAddress(LibHandle, 'SDL_AndroidBackButton')); + If Not assigned(SDL_AndroidBackButton) Then result := false; + SDL_AndroidGetInternalStoragePath := TSDL_AndroidGetInternalStoragePath_func(GetProcAddress(LibHandle, 'SDL_AndroidGetInternalStoragePath')); + If Not assigned(SDL_AndroidGetInternalStoragePath) Then result := false; + SDL_AndroidGetExternalStorageState := TSDL_AndroidGetExternalStorageState_func(GetProcAddress(LibHandle, 'SDL_AndroidGetExternalStorageState')); + If Not assigned(SDL_AndroidGetExternalStorageState) Then result := false; + SDL_AndroidGetExternalStoragePath := TSDL_AndroidGetExternalStoragePath_func(GetProcAddress(LibHandle, 'SDL_AndroidGetExternalStoragePath')); + If Not assigned(SDL_AndroidGetExternalStoragePath) Then result := false; + SDL_AndroidRequestPermission := TSDL_AndroidRequestPermission_func(GetProcAddress(LibHandle, 'SDL_AndroidRequestPermission')); + If Not assigned(SDL_AndroidRequestPermission) Then result := false; + SDL_AndroidShowToast := TSDL_AndroidShowToast_func(GetProcAddress(LibHandle, 'SDL_AndroidShowToast')); + If Not assigned(SDL_AndroidShowToast) Then result := false; + SDL_AndroidSendMessage := TSDL_AndroidSendMessage_func(GetProcAddress(LibHandle, 'SDL_AndroidSendMessage')); + If Not assigned(SDL_AndroidSendMessage) Then result := false; + SDL_WinRTGetFSPathUNICODE := TSDL_WinRTGetFSPathUNICODE_func(GetProcAddress(LibHandle, 'SDL_WinRTGetFSPathUNICODE')); + If Not assigned(SDL_WinRTGetFSPathUNICODE) Then result := false; + SDL_WinRTGetFSPathUTF8 := TSDL_WinRTGetFSPathUTF8_func(GetProcAddress(LibHandle, 'SDL_WinRTGetFSPathUTF8')); + If Not assigned(SDL_WinRTGetFSPathUTF8) Then result := false; + SDL_WinRTGetDeviceFamily := TSDL_WinRTGetDeviceFamily_func(GetProcAddress(LibHandle, 'SDL_WinRTGetDeviceFamily')); + If Not assigned(SDL_WinRTGetDeviceFamily) Then result := false; +{$ENDIF} +{$ENDIF} + SDL_IsTablet := TSDL_IsTablet_func(GetProcAddress(LibHandle, 'SDL_IsTablet')); + If Not assigned(SDL_IsTablet) Then result := false; + SDL_PumpEvents := TSDL_PumpEvents_proc(GetProcAddress(LibHandle, 'SDL_PumpEvents')); + If Not assigned(SDL_PumpEvents) Then result := false; + SDL_PollEvent := TSDL_PollEvent_func(GetProcAddress(LibHandle, 'SDL_PollEvent')); + If Not assigned(SDL_PollEvent) Then result := false; + SDL_EventState := TSDL_EventState_func(GetProcAddress(LibHandle, 'SDL_EventState')); + If Not assigned(SDL_EventState) Then result := false; + SDL_GetWindowWMInfo := TSDL_GetWindowWMInfo_func(GetProcAddress(LibHandle, 'SDL_GetWindowWMInfo')); + If Not assigned(SDL_GetWindowWMInfo) Then result := false; + SDL_CreateThread := TSDL_CreateThread_func(GetProcAddress(LibHandle, 'SDL_CreateThread')); + If Not assigned(SDL_CreateThread) Then result := false; + SDL_CreateThreadWithStackSize := TSDL_CreateThreadWithStackSize_func(GetProcAddress(LibHandle, 'SDL_CreateThreadWithStackSize')); + If Not assigned(SDL_CreateThreadWithStackSize) Then result := false; + SDL_CreateThread := TSDL_CreateThread_func(GetProcAddress(LibHandle, 'SDL_CreateThread')); + If Not assigned(SDL_CreateThread) Then result := false; + SDL_CreateThreadWithStackSize := TSDL_CreateThreadWithStackSize_func(GetProcAddress(LibHandle, 'SDL_CreateThreadWithStackSize')); + If Not assigned(SDL_CreateThreadWithStackSize) Then result := false; + SDL_GetThreadName := TSDL_GetThreadName_func(GetProcAddress(LibHandle, 'SDL_GetThreadName')); + If Not assigned(SDL_GetThreadName) Then result := false; + SDL_GetThreadID := TSDL_GetThreadID_func(GetProcAddress(LibHandle, 'SDL_GetThreadID')); + If Not assigned(SDL_GetThreadID) Then result := false; + SDL_SetThreadPriority := TSDL_SetThreadPriority_func(GetProcAddress(LibHandle, 'SDL_SetThreadPriority')); + If Not assigned(SDL_SetThreadPriority) Then result := false; + SDL_WaitThread := TSDL_WaitThread_proc(GetProcAddress(LibHandle, 'SDL_WaitThread')); + If Not assigned(SDL_WaitThread) Then result := false; + SDL_DetachThread := TSDL_DetachThread_proc(GetProcAddress(LibHandle, 'SDL_DetachThread')); + If Not assigned(SDL_DetachThread) Then result := false; + SDL_TLSGet := TSDL_TLSGet_func(GetProcAddress(LibHandle, 'SDL_TLSGet')); + If Not assigned(SDL_TLSGet) Then result := false; + SDL_TLSSet := TSDL_TLSSet_func(GetProcAddress(LibHandle, 'SDL_TLSSet')); + If Not assigned(SDL_TLSSet) Then result := false; + SDL_Delay := TSDL_Delay_proc(GetProcAddress(LibHandle, 'SDL_Delay')); + If Not assigned(SDL_Delay) Then result := false; + SDL_AddTimer := TSDL_AddTimer_func(GetProcAddress(LibHandle, 'SDL_AddTimer')); + If Not assigned(SDL_AddTimer) Then result := false; + SDL_RemoveTimer := TSDL_RemoveTimer_func(GetProcAddress(LibHandle, 'SDL_RemoveTimer')); + If Not assigned(SDL_RemoveTimer) Then result := false; + SDL_GetNumTouchDevices := TSDL_GetNumTouchDevices_func(GetProcAddress(LibHandle, 'SDL_GetNumTouchDevices')); + If Not assigned(SDL_GetNumTouchDevices) Then result := false; + SDL_GetTouchDevice := TSDL_GetTouchDevice_func(GetProcAddress(LibHandle, 'SDL_GetTouchDevice')); + If Not assigned(SDL_GetTouchDevice) Then result := false; + (* SDL_GetTouchName := TSDL_GetTouchName_func(GetProcAddress(LibHandle, 'SDL_GetTouchName')); + If Not assigned(SDL_GetTouchName) Then result := false; + SDL_GetTouchDeviceType := TSDL_GetTouchDeviceType_func(GetProcAddress(LibHandle, 'SDL_GetTouchDeviceType')); + If Not assigned(SDL_GetTouchDeviceType) Then result := false; + SDL_GetNumTouchFingers := TSDL_GetNumTouchFingers_func(GetProcAddress(LibHandle, 'SDL_GetNumTouchFingers')); + If Not assigned(SDL_GetNumTouchFingers) Then result := false; + SDL_GetTouchFinger := TSDL_GetTouchFinger_func(GetProcAddress(LibHandle, 'SDL_GetTouchFinger')); + If Not assigned(SDL_GetTouchFinger) Then result := false; //*) + SDL_GetVersion := TSDL_GetVersion_proc(GetProcAddress(LibHandle, 'SDL_GetVersion')); + If Not assigned(SDL_GetVersion) Then result := false; + (* SDL_GetVideoDriver := TSDL_GetVideoDriver_func(GetProcAddress(LibHandle, 'SDL_GetVideoDriver')); + If Not assigned(SDL_GetVideoDriver) Then result := false; + SDL_VideoInit := TSDL_VideoInit_func(GetProcAddress(LibHandle, 'SDL_VideoInit')); + If Not assigned(SDL_VideoInit) Then result := false; + SDL_GetDisplayName := TSDL_GetDisplayName_func(GetProcAddress(LibHandle, 'SDL_GetDisplayName')); + If Not assigned(SDL_GetDisplayName) Then result := false; + SDL_GetDisplayBounds := TSDL_GetDisplayBounds_func(GetProcAddress(LibHandle, 'SDL_GetDisplayBounds')); + If Not assigned(SDL_GetDisplayBounds) Then result := false; + SDL_GetDisplayUsableBounds := TSDL_GetDisplayUsableBounds_func(GetProcAddress(LibHandle, 'SDL_GetDisplayUsableBounds')); + If Not assigned(SDL_GetDisplayUsableBounds) Then result := false; + SDL_GetDisplayDPI := TSDL_GetDisplayDPI_func(GetProcAddress(LibHandle, 'SDL_GetDisplayDPI')); + If Not assigned(SDL_GetDisplayDPI) Then result := false; + SDL_GetDisplayOrientation := TSDL_GetDisplayOrientation_func(GetProcAddress(LibHandle, 'SDL_GetDisplayOrientation')); + If Not assigned(SDL_GetDisplayOrientation) Then result := false; + SDL_GetNumDisplayModes := TSDL_GetNumDisplayModes_func(GetProcAddress(LibHandle, 'SDL_GetNumDisplayModes')); + If Not assigned(SDL_GetNumDisplayModes) Then result := false; + SDL_GetDisplayMode := TSDL_GetDisplayMode_func(GetProcAddress(LibHandle, 'SDL_GetDisplayMode')); + If Not assigned(SDL_GetDisplayMode) Then result := false; + SDL_GetDesktopDisplayMode := TSDL_GetDesktopDisplayMode_func(GetProcAddress(LibHandle, 'SDL_GetDesktopDisplayMode')); + If Not assigned(SDL_GetDesktopDisplayMode) Then result := false; + SDL_GetCurrentDisplayMode := TSDL_GetCurrentDisplayMode_func(GetProcAddress(LibHandle, 'SDL_GetCurrentDisplayMode')); + If Not assigned(SDL_GetCurrentDisplayMode) Then result := false; + SDL_GetClosestDisplayMode := TSDL_GetClosestDisplayMode_func(GetProcAddress(LibHandle, 'SDL_GetClosestDisplayMode')); + If Not assigned(SDL_GetClosestDisplayMode) Then result := false; + SDL_GetPointDisplayIndex := TSDL_GetPointDisplayIndex_func(GetProcAddress(LibHandle, 'SDL_GetPointDisplayIndex')); + If Not assigned(SDL_GetPointDisplayIndex) Then result := false; + SDL_GetRectDisplayIndex := TSDL_GetRectDisplayIndex_func(GetProcAddress(LibHandle, 'SDL_GetRectDisplayIndex')); + If Not assigned(SDL_GetRectDisplayIndex) Then result := false; + SDL_GetWindowDisplayIndex := TSDL_GetWindowDisplayIndex_func(GetProcAddress(LibHandle, 'SDL_GetWindowDisplayIndex')); + If Not assigned(SDL_GetWindowDisplayIndex) Then result := false; + SDL_SetWindowDisplayMode := TSDL_SetWindowDisplayMode_func(GetProcAddress(LibHandle, 'SDL_SetWindowDisplayMode')); + If Not assigned(SDL_SetWindowDisplayMode) Then result := false; + SDL_GetWindowDisplayMode := TSDL_GetWindowDisplayMode_func(GetProcAddress(LibHandle, 'SDL_GetWindowDisplayMode')); + If Not assigned(SDL_GetWindowDisplayMode) Then result := false; + SDL_GetWindowICCProfile := TSDL_GetWindowICCProfile_func(GetProcAddress(LibHandle, 'SDL_GetWindowICCProfile')); + If Not assigned(SDL_GetWindowICCProfile) Then result := false; + SDL_GetWindowPixelFormat := TSDL_GetWindowPixelFormat_func(GetProcAddress(LibHandle, 'SDL_GetWindowPixelFormat')); + If Not assigned(SDL_GetWindowPixelFormat) Then result := false; + SDL_CreateWindow := TSDL_CreateWindow_func(GetProcAddress(LibHandle, 'SDL_CreateWindow')); + If Not assigned(SDL_CreateWindow) Then result := false; + SDL_CreateWindowFrom := TSDL_CreateWindowFrom_func(GetProcAddress(LibHandle, 'SDL_CreateWindowFrom')); + If Not assigned(SDL_CreateWindowFrom) Then result := false; + SDL_GetWindowID := TSDL_GetWindowID_func(GetProcAddress(LibHandle, 'SDL_GetWindowID')); + If Not assigned(SDL_GetWindowID) Then result := false; + SDL_GetWindowFromID := TSDL_GetWindowFromID_func(GetProcAddress(LibHandle, 'SDL_GetWindowFromID')); + If Not assigned(SDL_GetWindowFromID) Then result := false; + SDL_GetWindowFlags := TSDL_GetWindowFlags_func(GetProcAddress(LibHandle, 'SDL_GetWindowFlags')); + If Not assigned(SDL_GetWindowFlags) Then result := false; + SDL_SetWindowTitle := TSDL_SetWindowTitle_proc(GetProcAddress(LibHandle, 'SDL_SetWindowTitle')); + If Not assigned(SDL_SetWindowTitle) Then result := false; + SDL_GetWindowTitle := TSDL_GetWindowTitle_func(GetProcAddress(LibHandle, 'SDL_GetWindowTitle')); + If Not assigned(SDL_GetWindowTitle) Then result := false; + SDL_SetWindowIcon := TSDL_SetWindowIcon_proc(GetProcAddress(LibHandle, 'SDL_SetWindowIcon')); + If Not assigned(SDL_SetWindowIcon) Then result := false; + SDL_SetWindowData := TSDL_SetWindowData_func(GetProcAddress(LibHandle, 'SDL_SetWindowData')); + If Not assigned(SDL_SetWindowData) Then result := false; + SDL_GetWindowData := TSDL_GetWindowData_func(GetProcAddress(LibHandle, 'SDL_GetWindowData')); + If Not assigned(SDL_GetWindowData) Then result := false; + SDL_SetWindowPosition := TSDL_SetWindowPosition_proc(GetProcAddress(LibHandle, 'SDL_SetWindowPosition')); + If Not assigned(SDL_SetWindowPosition) Then result := false; + SDL_GetWindowPosition := TSDL_GetWindowPosition_proc(GetProcAddress(LibHandle, 'SDL_GetWindowPosition')); + If Not assigned(SDL_GetWindowPosition) Then result := false; + SDL_SetWindowSize := TSDL_SetWindowSize_proc(GetProcAddress(LibHandle, 'SDL_SetWindowSize')); + If Not assigned(SDL_SetWindowSize) Then result := false; + SDL_GetWindowSize := TSDL_GetWindowSize_proc(GetProcAddress(LibHandle, 'SDL_GetWindowSize')); + If Not assigned(SDL_GetWindowSize) Then result := false; + SDL_GetWindowBordersSize := TSDL_GetWindowBordersSize_func(GetProcAddress(LibHandle, 'SDL_GetWindowBordersSize')); + If Not assigned(SDL_GetWindowBordersSize) Then result := false; + SDL_GetWindowSizeInPixels := TSDL_GetWindowSizeInPixels_proc(GetProcAddress(LibHandle, 'SDL_GetWindowSizeInPixels')); + If Not assigned(SDL_GetWindowSizeInPixels) Then result := false; + SDL_SetWindowMinimumSize := TSDL_SetWindowMinimumSize_proc(GetProcAddress(LibHandle, 'SDL_SetWindowMinimumSize')); + If Not assigned(SDL_SetWindowMinimumSize) Then result := false; + SDL_GetWindowMinimumSize := TSDL_GetWindowMinimumSize_proc(GetProcAddress(LibHandle, 'SDL_GetWindowMinimumSize')); + If Not assigned(SDL_GetWindowMinimumSize) Then result := false; + SDL_SetWindowMaximumSize := TSDL_SetWindowMaximumSize_proc(GetProcAddress(LibHandle, 'SDL_SetWindowMaximumSize')); + If Not assigned(SDL_SetWindowMaximumSize) Then result := false; + SDL_GetWindowMaximumSize := TSDL_GetWindowMaximumSize_proc(GetProcAddress(LibHandle, 'SDL_GetWindowMaximumSize')); + If Not assigned(SDL_GetWindowMaximumSize) Then result := false; + SDL_SetWindowBordered := TSDL_SetWindowBordered_proc(GetProcAddress(LibHandle, 'SDL_SetWindowBordered')); + If Not assigned(SDL_SetWindowBordered) Then result := false; + SDL_SetWindowResizable := TSDL_SetWindowResizable_proc(GetProcAddress(LibHandle, 'SDL_SetWindowResizable')); + If Not assigned(SDL_SetWindowResizable) Then result := false; + SDL_SetWindowAlwaysOnTop := TSDL_SetWindowAlwaysOnTop_proc(GetProcAddress(LibHandle, 'SDL_SetWindowAlwaysOnTop')); + If Not assigned(SDL_SetWindowAlwaysOnTop) Then result := false; + SDL_ShowWindow := TSDL_ShowWindow_proc(GetProcAddress(LibHandle, 'SDL_ShowWindow')); + If Not assigned(SDL_ShowWindow) Then result := false; + SDL_HideWindow := TSDL_HideWindow_proc(GetProcAddress(LibHandle, 'SDL_HideWindow')); + If Not assigned(SDL_HideWindow) Then result := false; + SDL_RaiseWindow := TSDL_RaiseWindow_proc(GetProcAddress(LibHandle, 'SDL_RaiseWindow')); + If Not assigned(SDL_RaiseWindow) Then result := false; + SDL_MaximizeWindow := TSDL_MaximizeWindow_proc(GetProcAddress(LibHandle, 'SDL_MaximizeWindow')); + If Not assigned(SDL_MaximizeWindow) Then result := false; + SDL_MinimizeWindow := TSDL_MinimizeWindow_proc(GetProcAddress(LibHandle, 'SDL_MinimizeWindow')); + If Not assigned(SDL_MinimizeWindow) Then result := false; + SDL_RestoreWindow := TSDL_RestoreWindow_proc(GetProcAddress(LibHandle, 'SDL_RestoreWindow')); + If Not assigned(SDL_RestoreWindow) Then result := false; + SDL_SetWindowFullscreen := TSDL_SetWindowFullscreen_func(GetProcAddress(LibHandle, 'SDL_SetWindowFullscreen')); + If Not assigned(SDL_SetWindowFullscreen) Then result := false; + SDL_HasWindowSurface := TSDL_HasWindowSurface_func(GetProcAddress(LibHandle, 'SDL_HasWindowSurface')); + If Not assigned(SDL_HasWindowSurface) Then result := false; + SDL_GetWindowSurface := TSDL_GetWindowSurface_func(GetProcAddress(LibHandle, 'SDL_GetWindowSurface')); + If Not assigned(SDL_GetWindowSurface) Then result := false; + SDL_UpdateWindowSurface := TSDL_UpdateWindowSurface_func(GetProcAddress(LibHandle, 'SDL_UpdateWindowSurface')); + If Not assigned(SDL_UpdateWindowSurface) Then result := false; + SDL_UpdateWindowSurfaceRects := TSDL_UpdateWindowSurfaceRects_func(GetProcAddress(LibHandle, 'SDL_UpdateWindowSurfaceRects')); + If Not assigned(SDL_UpdateWindowSurfaceRects) Then result := false; + SDL_DestroyWindowSurface := TSDL_DestroyWindowSurface_func(GetProcAddress(LibHandle, 'SDL_DestroyWindowSurface')); + If Not assigned(SDL_DestroyWindowSurface) Then result := false; + SDL_SetWindowGrab := TSDL_SetWindowGrab_proc(GetProcAddress(LibHandle, 'SDL_SetWindowGrab')); + If Not assigned(SDL_SetWindowGrab) Then result := false; + SDL_GetWindowGrab := TSDL_GetWindowGrab_func(GetProcAddress(LibHandle, 'SDL_GetWindowGrab')); + If Not assigned(SDL_GetWindowGrab) Then result := false; + SDL_SetWindowKeyboardGrab := TSDL_SetWindowKeyboardGrab_proc(GetProcAddress(LibHandle, 'SDL_SetWindowKeyboardGrab')); + If Not assigned(SDL_SetWindowKeyboardGrab) Then result := false; + SDL_GetWindowKeyboardGrab := TSDL_GetWindowKeyboardGrab_func(GetProcAddress(LibHandle, 'SDL_GetWindowKeyboardGrab')); + If Not assigned(SDL_GetWindowKeyboardGrab) Then result := false; + SDL_SetWindowMouseGrab := TSDL_SetWindowMouseGrab_proc(GetProcAddress(LibHandle, 'SDL_SetWindowMouseGrab')); + If Not assigned(SDL_SetWindowMouseGrab) Then result := false; + SDL_GetWindowMouseGrab := TSDL_GetWindowMouseGrab_func(GetProcAddress(LibHandle, 'SDL_GetWindowMouseGrab')); + If Not assigned(SDL_GetWindowMouseGrab) Then result := false; + SDL_SetWindowMouseRect := TSDL_SetWindowMouseRect_proc(GetProcAddress(LibHandle, 'SDL_SetWindowMouseRect')); + If Not assigned(SDL_SetWindowMouseRect) Then result := false; + SDL_GetWindowMouseRect := TSDL_GetWindowMouseRect_func(GetProcAddress(LibHandle, 'SDL_GetWindowMouseRect')); + If Not assigned(SDL_GetWindowMouseRect) Then result := false; + SDL_GetGrabbedWindow := TSDL_GetGrabbedWindow_func(GetProcAddress(LibHandle, 'SDL_GetGrabbedWindow')); + If Not assigned(SDL_GetGrabbedWindow) Then result := false; + SDL_SetWindowBrightness := TSDL_SetWindowBrightness_func(GetProcAddress(LibHandle, 'SDL_SetWindowBrightness')); + If Not assigned(SDL_SetWindowBrightness) Then result := false; + SDL_GetWindowBrightness := TSDL_GetWindowBrightness_func(GetProcAddress(LibHandle, 'SDL_GetWindowBrightness')); + If Not assigned(SDL_GetWindowBrightness) Then result := false; + SDL_SetWindowOpacity := TSDL_SetWindowOpacity_func(GetProcAddress(LibHandle, 'SDL_SetWindowOpacity')); + If Not assigned(SDL_SetWindowOpacity) Then result := false; + SDL_GetWindowOpacity := TSDL_GetWindowOpacity_func(GetProcAddress(LibHandle, 'SDL_GetWindowOpacity')); + If Not assigned(SDL_GetWindowOpacity) Then result := false; + SDL_SetWindowModalFor := TSDL_SetWindowModalFor_func(GetProcAddress(LibHandle, 'SDL_SetWindowModalFor')); + If Not assigned(SDL_SetWindowModalFor) Then result := false; + SDL_SetWindowInputFocus := TSDL_SetWindowInputFocus_func(GetProcAddress(LibHandle, 'SDL_SetWindowInputFocus')); + If Not assigned(SDL_SetWindowInputFocus) Then result := false; + SDL_SetWindowGammaRamp := TSDL_SetWindowGammaRamp_func(GetProcAddress(LibHandle, 'SDL_SetWindowGammaRamp')); + If Not assigned(SDL_SetWindowGammaRamp) Then result := false; + SDL_GetWindowGammaRamp := TSDL_GetWindowGammaRamp_func(GetProcAddress(LibHandle, 'SDL_GetWindowGammaRamp')); + If Not assigned(SDL_GetWindowGammaRamp) Then result := false; + SDL_SetWindowHitTest := TSDL_SetWindowHitTest_func(GetProcAddress(LibHandle, 'SDL_SetWindowHitTest')); + If Not assigned(SDL_SetWindowHitTest) Then result := false; + SDL_FlashWindow := TSDL_FlashWindow_func(GetProcAddress(LibHandle, 'SDL_FlashWindow')); + If Not assigned(SDL_FlashWindow) Then result := false; + SDL_DestroyWindow := TSDL_DestroyWindow_proc(GetProcAddress(LibHandle, 'SDL_DestroyWindow')); + If Not assigned(SDL_DestroyWindow) Then result := false; + SDL_GL_LoadLibrary := TSDL_GL_LoadLibrary_func(GetProcAddress(LibHandle, 'SDL_GL_LoadLibrary')); + If Not assigned(SDL_GL_LoadLibrary) Then result := false; + SDL_GL_GetProcAddress := TSDL_GL_GetProcAddress_func(GetProcAddress(LibHandle, 'SDL_GL_GetProcAddress')); + If Not assigned(SDL_GL_GetProcAddress) Then result := false; + SDL_GL_ExtensionSupported := TSDL_GL_ExtensionSupported_func(GetProcAddress(LibHandle, 'SDL_GL_ExtensionSupported')); + If Not assigned(SDL_GL_ExtensionSupported) Then result := false; + SDL_GL_ResetAttributes := TSDL_GL_ResetAttributes_proc(GetProcAddress(LibHandle, 'SDL_GL_ResetAttributes')); + If Not assigned(SDL_GL_ResetAttributes) Then result := false; + SDL_GL_SetAttribute := TSDL_GL_SetAttribute_func(GetProcAddress(LibHandle, 'SDL_GL_SetAttribute')); + If Not assigned(SDL_GL_SetAttribute) Then result := false; + SDL_GL_GetAttribute := TSDL_GL_GetAttribute_func(GetProcAddress(LibHandle, 'SDL_GL_GetAttribute')); + If Not assigned(SDL_GL_GetAttribute) Then result := false; + SDL_GL_CreateContext := TSDL_GL_CreateContext_func(GetProcAddress(LibHandle, 'SDL_GL_CreateContext')); + If Not assigned(SDL_GL_CreateContext) Then result := false; + SDL_GL_MakeCurrent := TSDL_GL_MakeCurrent_func(GetProcAddress(LibHandle, 'SDL_GL_MakeCurrent')); + If Not assigned(SDL_GL_MakeCurrent) Then result := false; + SDL_GL_GetDrawableSize := TSDL_GL_GetDrawableSize_proc(GetProcAddress(LibHandle, 'SDL_GL_GetDrawableSize')); + If Not assigned(SDL_GL_GetDrawableSize) Then result := false; + SDL_GL_SetSwapInterval := TSDL_GL_SetSwapInterval_func(GetProcAddress(LibHandle, 'SDL_GL_SetSwapInterval')); + If Not assigned(SDL_GL_SetSwapInterval) Then result := false; + SDL_GL_SwapWindow := TSDL_GL_SwapWindow_proc(GetProcAddress(LibHandle, 'SDL_GL_SwapWindow')); + If Not assigned(SDL_GL_SwapWindow) Then result := false; + SDL_GL_DeleteContext := TSDL_GL_DeleteContext_proc(GetProcAddress(LibHandle, 'SDL_GL_DeleteContext')); + If Not assigned(SDL_GL_DeleteContext) Then result := false; + *) + End; + If Not result Then SDL_UnLoadLib(); +End; + +Procedure SDL_UnLoadLib(); +Begin + If LibHandle <> 0 Then Begin + UnloadLibrary(LibHandle); + LibHandle := 0; + End; +End; +{$ENDIF} + diff --git a/units/sdlatomic.inc b/units/sdlatomic.inc index d380ed4..80bf1d5 100644 --- a/units/sdlatomic.inc +++ b/units/sdlatomic.inc @@ -17,22 +17,43 @@ type {** * Try to lock a spin lock by setting it to a non-zero value. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicTryLock_func = function (lock: PSDL_SpinLock): TSDL_bool; cdecl; +Var + SDL_AtomicTryLock : TSDL_AtomicTryLock_func = Nil; +{$else} function SDL_AtomicTryLock(lock: PSDL_SpinLock): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicTryLock' {$ENDIF} {$ENDIF}; +{$endif} {** * Lock a spin lock by setting it to a non-zero value. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicLock_func = function (lock: PSDL_SpinLock): TSDL_bool; cdecl; +Var + SDL_AtomicLock : TSDL_AtomicLock_func = Nil; +{$else} function SDL_AtomicLock(lock: PSDL_SpinLock): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicLock' {$ENDIF} {$ENDIF}; +{$endif} {** * Unlock a spin lock by setting it to 0. * * Always returns immediately. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicUnlock_proc = procedure (lock: PSDL_SpinLock); cdecl; +Var + SDL_AtomicUnlock : TSDL_AtomicUnlock_proc = Nil; +{$else} procedure SDL_AtomicUnlock(lock: PSDL_SpinLock); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicUnlock' {$ENDIF} {$ENDIF}; +{$endif} {** * The compiler barrier prevents the compiler from reordering @@ -54,30 +75,58 @@ type {** * Set an atomic variable to a new value if it is currently an old value. *} -function SDL_AtomicCAS(atomic: PSDL_Atomic; oldValue, newValue: cint): TSDL_bool; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_AtomicCAS_func = function (atomic: PSDL_Atomic; oldValue, newValue: cint): TSDL_bool; cdecl; + Var + SDL_AtomicCAS : TSDL_AtomicCAS_func = Nil; + {$else} + function SDL_AtomicCAS(atomic: PSDL_Atomic; oldValue, newValue: cint): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicCAS' {$ENDIF} {$ENDIF}; + {$endif} {** * Set an atomic variable to a new value and return the old one. * * This function also acts as a full memory barrier. *} -function SDL_AtomicSet(atomic: PSDL_Atomic; value: cint): cint; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_AtomicSet_func = function (atomic: PSDL_Atomic; value: cint): cint; cdecl; + Var + SDL_AtomicSet : TSDL_AtomicSet_func = Nil; + {$else} + function SDL_AtomicSet(atomic: PSDL_Atomic; value: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicSet' {$ENDIF} {$ENDIF}; + {$endif} {** * Get the value of an atomic variable. *} -function SDL_AtomicGet(atomic: PSDL_Atomic): cint; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_AtomicGet_func = function (atomic: PSDL_Atomic): cint; cdecl; + Var + SDL_AtomicGet : TSDL_AtomicGet_func = Nil; + {$else} + function SDL_AtomicGet(atomic: PSDL_Atomic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicGet' {$ENDIF} {$ENDIF}; + {$endif} {** * Add to an atomic variable, and return the old value. * * This function also acts as a full memory barrier. *} -function SDL_AtomicAdd(atomic: PSDL_Atomic; value: cint): cint; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_AtomicAdd_func = function (atomic: PSDL_Atomic; value: cint): cint; cdecl; + Var + SDL_AtomicAdd : TSDL_AtomicAdd_func = Nil; + {$else} + function SDL_AtomicAdd(atomic: PSDL_Atomic; value: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicAdd' {$ENDIF} {$ENDIF}; + {$endif} {** * Increment an atomic variable used as a reference count. @@ -92,18 +141,39 @@ function SDL_AtomicDecRef(atomic: PSDL_Atomic): Boolean; {** * Set a pointer to a new value if it is currently an old value. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicCASPtr_func = function (ptr: PPointer; oldValue, newValue: Pointer): TSDL_bool; cdecl; +Var + SDL_AtomicCASPtr : TSDL_AtomicCASPtr_func = Nil; +{$else} function SDL_AtomicCASPtr(ptr: PPointer; oldValue, newValue: Pointer): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicCASPtr' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a pointer to a new value atomically, and return the old value. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicSetPtr_func = function (ptr: PPointer; value: Pointer): Pointer; cdecl; +Var + SDL_AtomicSetPtr : TSDL_AtomicSetPtr_func = Nil; +{$else} function SDL_AtomicSetPtr(ptr: PPointer; value: Pointer): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicSetPtr' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the value of a pointer atomically. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AtomicGetPtr_func = function (ptr: PPointer): Pointer; cdecl; +Var + SDL_AtomicGetPtr : TSDL_AtomicGetPtr_func = Nil; +{$else} function SDL_AtomicGetPtr(ptr: PPointer): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AtomicGetPtr' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlaudio.inc b/units/sdlaudio.inc index ce3ba35..7c608cf 100644 --- a/units/sdlaudio.inc +++ b/units/sdlaudio.inc @@ -219,8 +219,15 @@ type * * \sa SDL_GetAudioDriver *} + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetNumAudioDrivers_func = function : cint; cdecl; + Var + SDL_GetNumAudioDrivers : TSDL_GetNumAudioDrivers_func = Nil; + {$else} function SDL_GetNumAudioDrivers: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumAudioDrivers' {$ENDIF} {$ENDIF}; +{$endif} {** * Use this function to get the name of a built in audio driver. @@ -242,8 +249,16 @@ function SDL_GetNumAudioDrivers: cint; cdecl; * * \sa SDL_GetNumAudioDrivers *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetAudioDriver_func = function(index: cint): PAnsiChar; cdecl; +Var + SDL_GetAudioDriver : TSDL_GetAudioDriver_func = Nil; +{$else} + function SDL_GetAudioDriver(index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetAudioDriver' {$ENDIF} {$ENDIF}; +{$endif} {** * Initialization and cleanup @@ -268,8 +283,16 @@ function SDL_GetAudioDriver(index: cint): PAnsiChar; cdecl; * * \sa SDL_AudioQuit *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioInit_func = function(driver_name: PAnsiChar): cint; cdecl; +Var + SDL_AudioInit : TSDL_AudioInit_func = Nil; +{$else} + function SDL_AudioInit(driver_name: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioInit' {$ENDIF} {$ENDIF}; +{$endif} {** * Use this function to shut down audio if you initialized it with @@ -283,9 +306,15 @@ function SDL_AudioInit(driver_name: PAnsiChar): cint; cdecl; * * \sa SDL_AudioInit *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioQuit_proc = procedure ; cdecl; +Var + SDL_AudioQuit : TSDL_AudioQuit_proc = Nil; +{$else} procedure SDL_AudioQuit; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioQuit' {$ENDIF} {$ENDIF}; - +{$endif} {** * Get the name of the current audio driver. * @@ -302,9 +331,15 @@ procedure SDL_AudioQuit; cdecl; * * \sa SDL_AudioInit *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetCurrentAudioDriver_func = function : PAnsiChar; cdecl; +Var + SDL_GetCurrentAudioDriver : TSDL_GetCurrentAudioDriver_func = Nil; +{$else} function SDL_GetCurrentAudioDriver: PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCurrentAudioDriver' {$ENDIF} {$ENDIF}; - +{$endif} {** * This function is a legacy means of opening the audio device. * @@ -352,8 +387,16 @@ function SDL_GetCurrentAudioDriver: PAnsiChar; cdecl; * \sa SDL_PauseAudio * \sa SDL_UnlockAudio *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_OpenAudio_func = function(desired: PSDL_AudioSpec; obtained: PSDL_AudioSpec): cint; cdecl; +Var + SDL_OpenAudio : TSDL_OpenAudio_func = Nil; +{$else} + function SDL_OpenAudio(desired: PSDL_AudioSpec; obtained: PSDL_AudioSpec): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_OpenAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * SDL Audio Device IDs. @@ -413,8 +456,16 @@ type * \sa SDL_GetAudioDeviceName * \sa SDL_OpenAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumAudioDevices_func = function(iscapture: cint): cint; cdecl; +Var + SDL_GetNumAudioDevices : TSDL_GetNumAudioDevices_func = Nil; +{$else} + function SDL_GetNumAudioDevices(iscapture: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumAudioDevices' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the human-readable name of a specific audio device. @@ -441,8 +492,16 @@ function SDL_GetNumAudioDevices(iscapture: cint): cint; cdecl; * \sa SDL_GetNumAudioDevices * \sa SDL_GetDefaultAudioInfo *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetAudioDeviceName_func = function(index: cint; iscapture: cint): PAnsiChar; cdecl; +Var + SDL_GetAudioDeviceName : TSDL_GetAudioDeviceName_func = Nil; +{$else} + function SDL_GetAudioDeviceName(index: cint; iscapture: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetAudioDeviceName' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the preferred audio format of a specific audio device. @@ -467,8 +526,16 @@ function SDL_GetAudioDeviceName(index: cint; iscapture: cint): PAnsiChar; cdecl; * \sa SDL_GetNumAudioDevices * \sa SDL_GetDefaultAudioInfo } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetAudioDeviceSpec_func = function(index: cint; iscapture: cint; spec: PSDL_AudioSpec): cint; cdecl; +Var + SDL_GetAudioDeviceSpec : TSDL_GetAudioDeviceSpec_func = Nil; +{$else} + function SDL_GetAudioDeviceSpec(index: cint; iscapture: cint; spec: PSDL_AudioSpec): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetAudioDeviceSpec' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the name and preferred format of the default audio device. @@ -500,8 +567,16 @@ function SDL_GetAudioDeviceSpec(index: cint; iscapture: cint; spec: PSDL_AudioSp * \sa SDL_GetAudioDeviceSpec * \sa SDL_OpenAudioDevice } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDefaultAudioInfo_func = function(name: PPAnsiChar; spec: PSDL_AudioSpec; iscapture: cint): cint; cdecl; +Var + SDL_GetDefaultAudioInfo : TSDL_GetDefaultAudioInfo_func = Nil; +{$else} + function SDL_GetDefaultAudioInfo(name: PPAnsiChar; spec: PSDL_AudioSpec; iscapture: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDefaultAudioInfo' {$ENDIF} {$ENDIF}; +{$endif} {** * Open a specific audio device. @@ -614,12 +689,24 @@ function SDL_GetDefaultAudioInfo(name: PPAnsiChar; spec: PSDL_AudioSpec; iscaptu * \sa SDL_PauseAudioDevice * \sa SDL_UnlockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_OpenAudioDevice_func = function(device: PAnsiChar; + iscapture: cint; + desired: PSDL_AudioSpec; + obtained: PSDL_AudioSpec; + allowed_changes: cint): TSDL_AudioDeviceID; cdecl; +Var + SDL_OpenAudioDevice : TSDL_OpenAudioDevice_func = Nil; +{$else} + function SDL_OpenAudioDevice(device: PAnsiChar; iscapture: cint; desired: PSDL_AudioSpec; obtained: PSDL_AudioSpec; allowed_changes: cint): TSDL_AudioDeviceID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_OpenAudioDevice' {$ENDIF} {$ENDIF}; +{$endif} {** * Audio state @@ -655,8 +742,15 @@ const * * \sa SDL_GetAudioDeviceStatus *} -function SDL_GetAudioStatus: TSDL_AudioStatus; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetAudioStatus_func = function : TSDL_AudioStatus; cdecl; + Var + SDL_GetAudioStatus : TSDL_GetAudioStatus_func = Nil; + {$else} + function SDL_GetAudioStatus: TSDL_AudioStatus; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetAudioStatus' {$ENDIF} {$ENDIF}; + {$endif} {** * Use this function to get the current audio state of an audio device. @@ -669,8 +763,16 @@ function SDL_GetAudioStatus: TSDL_AudioStatus; cdecl; * * \sa SDL_PauseAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetAudioDeviceStatus_func = function(dev: TSDL_AudioDeviceID): TSDL_AudioStatus; cdecl; +Var + SDL_GetAudioDeviceStatus : TSDL_GetAudioDeviceStatus_func = Nil; +{$else} + function SDL_GetAudioDeviceStatus(dev: TSDL_AudioDeviceID): TSDL_AudioStatus; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetAudioDeviceStatus' {$ENDIF} {$ENDIF}; +{$endif} {*Audio State*} @@ -703,8 +805,16 @@ function SDL_GetAudioDeviceStatus(dev: TSDL_AudioDeviceID): TSDL_AudioStatus; cd * \sa SDL_GetAudioStatus * \sa SDL_PauseAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_PauseAudio_proc = procedure(pause_on: cint); cdecl; +Var + SDL_PauseAudio : TSDL_PauseAudio_proc = Nil; +{$else} + procedure SDL_PauseAudio(pause_on: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PauseAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Use this function to pause and unpause audio playback on a specified @@ -734,8 +844,16 @@ procedure SDL_PauseAudio(pause_on: cint); cdecl; * * \sa SDL_LockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_PauseAudioDevice_proc = procedure(dev: TSDL_AudioDeviceID; pause_on: cint); cdecl; +Var + SDL_PauseAudioDevice : TSDL_PauseAudioDevice_proc = Nil; +{$else} + procedure SDL_PauseAudioDevice(dev: TSDL_AudioDeviceID; pause_on: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PauseAudioDevice' {$ENDIF} {$ENDIF}; +{$endif} {*Pause audio functions*} @@ -820,12 +938,24 @@ procedure SDL_PauseAudioDevice(dev: TSDL_AudioDeviceID; pause_on: cint); cdecl; * \sa SDL_FreeWAV * \sa SDL_LoadWAV *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadWAV_RW_func = function(src: PSDL_RWops; + freesrc: cint; + spec: PSDL_AudioSpec; + audio_buf: ppcuint8; + audio_len: pcuint32): PSDL_AudioSpec; cdecl; +Var + SDL_LoadWAV_RW : TSDL_LoadWAV_RW_func = Nil; +{$else} + function SDL_LoadWAV_RW(src: PSDL_RWops; freesrc: cint; spec: PSDL_AudioSpec; audio_buf: ppcuint8; audio_len: pcuint32): PSDL_AudioSpec; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadWAV_RW' {$ENDIF} {$ENDIF}; +{$endif} {** * Loads a WAV from a file. @@ -848,8 +978,16 @@ function SDL_LoadWAV(file_: PAnsiChar; spec: PSDL_AudioSpec; audio_buf: ppcuint8 * \sa SDL_LoadWAV * \sa SDL_LoadWAV_RW *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeWAV_proc = procedure(audio_buf: pcuint8); cdecl; +Var + SDL_FreeWAV : TSDL_FreeWAV_proc = Nil; +{$else} + procedure SDL_FreeWAV(audio_buf: pcuint8); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeWAV' {$ENDIF} {$ENDIF}; +{$endif} {** * Initialize an SDL_AudioCVT structure for conversion. @@ -883,6 +1021,19 @@ procedure SDL_FreeWAV(audio_buf: pcuint8); cdecl; * * \sa SDL_ConvertAudio *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_BuildAudioCVT_func = function(cvt: PSDL_AudioCVT; + src_format: TSDL_AudioFormat; + src_channels: cuint8; + src_rate: cint; + dst_format: TSDL_AudioFormat; + dst_channels: cuint8; + dst_rate: cint): cint; cdecl; +Var + SDL_BuildAudioCVT : TSDL_BuildAudioCVT_func = Nil; +{$else} + function SDL_BuildAudioCVT(cvt: PSDL_AudioCVT; src_format: TSDL_AudioFormat; src_channels: cuint8; @@ -891,6 +1042,7 @@ function SDL_BuildAudioCVT(cvt: PSDL_AudioCVT; dst_channels: cuint8; dst_rate: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_BuildAudioCVT' {$ENDIF} {$ENDIF}; +{$endif} {** * Convert audio data to a desired audio format. @@ -930,8 +1082,16 @@ function SDL_BuildAudioCVT(cvt: PSDL_AudioCVT; * * \sa SDL_BuildAudioCVT *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ConvertAudio_func = function(cvt: PSDL_AudioCVT): cint; cdecl; +Var + SDL_ConvertAudio : TSDL_ConvertAudio_func = Nil; +{$else} + function SDL_ConvertAudio(cvt: PSDL_AudioCVT): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ConvertAudio' {$ENDIF} {$ENDIF}; +{$endif} { SDL_AudioStream is a new audio conversion interface. The benefits vs SDL_AudioCVT: @@ -964,9 +1124,18 @@ type * \sa SDL_AudioStreamClear * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_NewAudioStream_func = function(src_format: TSDL_AudioFormat; src_channels: cuint8; src_rate: cint; dst_format: TSDL_AudioFormat; dst_channels: cuint8; + dst_rate: cint): PSDL_AudioStream; cdecl; +Var + SDL_NewAudioStream : TSDL_NewAudioStream_func = Nil; +{$else} + function SDL_NewAudioStream(src_format: TSDL_AudioFormat; src_channels: cuint8; src_rate: cint; dst_format: TSDL_AudioFormat; dst_channels: cuint8; dst_rate: cint): PSDL_AudioStream; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_NewAudioStream' {$ENDIF} {$ENDIF}; +{$endif} {* * Add data to be converted/resampled to the stream. @@ -985,8 +1154,16 @@ function SDL_NewAudioStream(src_format: TSDL_AudioFormat; src_channels: cuint8; * \sa SDL_AudioStreamClear * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioStreamPut_func = function(stream: PSDL_AudioStream; buf: pointer; len: cint): cint; cdecl; +Var + SDL_AudioStreamPut : TSDL_AudioStreamPut_func = Nil; +{$else} + function SDL_AudioStreamPut(stream: PSDL_AudioStream; buf: pointer; len: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioStreamPut' {$ENDIF} {$ENDIF}; +{$endif} {* * Get converted/resampled data from the stream @@ -1005,8 +1182,16 @@ function SDL_AudioStreamPut(stream: PSDL_AudioStream; buf: pointer; len: cint): * \sa SDL_AudioStreamClear * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioStreamGet_func = function(stream: PSDL_AudioStream; buf: pointer; len: cint): cint; cdecl; +Var + SDL_AudioStreamGet : TSDL_AudioStreamGet_func = Nil; +{$else} + function SDL_AudioStreamGet(stream: PSDL_AudioStream; buf: pointer; len: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioStreamGet' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the number of converted/resampled bytes available. @@ -1024,8 +1209,16 @@ function SDL_AudioStreamGet(stream: PSDL_AudioStream; buf: pointer; len: cint): * \sa SDL_AudioStreamClear * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioStreamAvailable_func = function(stream: PSDL_AudioStream): cint; cdecl; +Var + SDL_AudioStreamAvailable : TSDL_AudioStreamAvailable_func = Nil; +{$else} + function SDL_AudioStreamAvailable(stream: PSDL_AudioStream): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioStreamAvailable' {$ENDIF} {$ENDIF}; +{$endif} {* * Tell the stream that you're done sending data, and anything being buffered @@ -1044,8 +1237,16 @@ function SDL_AudioStreamAvailable(stream: PSDL_AudioStream): cint; cdecl; * \sa SDL_AudioStreamClear * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioStreamFlush_func = function(stream: PSDL_AudioStream): cint; cdecl; +Var + SDL_AudioStreamFlush : TSDL_AudioStreamFlush_func = Nil; +{$else} + function SDL_AudioStreamFlush(stream: PSDL_AudioStream): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioStreamFlush' {$ENDIF} {$ENDIF}; +{$endif} {* * Clear any pending data in the stream without converting it @@ -1059,8 +1260,16 @@ function SDL_AudioStreamFlush(stream: PSDL_AudioStream): cint; cdecl; * \sa SDL_AudioStreamFlush * \sa SDL_FreeAudioStream } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AudioStreamClear_proc = procedure(stream: PSDL_AudioStream); cdecl; +Var + SDL_AudioStreamClear : TSDL_AudioStreamClear_proc = Nil; +{$else} + procedure SDL_AudioStreamClear(stream: PSDL_AudioStream); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AudioStreamClear' {$ENDIF} {$ENDIF}; +{$endif} {* * Free an audio stream @@ -1074,8 +1283,16 @@ procedure SDL_AudioStreamClear(stream: PSDL_AudioStream); cdecl; * \sa SDL_AudioStreamFlush * \sa SDL_AudioStreamClear } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeAudioStream_proc = procedure(stream: PSDL_AudioStream); cdecl; +Var + SDL_FreeAudioStream : TSDL_FreeAudioStream_proc = Nil; +{$else} + procedure SDL_FreeAudioStream(stream: PSDL_AudioStream); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeAudioStream' {$ENDIF} {$ENDIF}; +{$endif} const SDL_MIX_MAXVOLUME = 128; @@ -1102,8 +1319,16 @@ const * * \sa SDL_MixAudioFormat *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MixAudio_proc = procedure(dst: pcuint8; src: pcuint8; len: cuint32; volume: cint); cdecl; +Var + SDL_MixAudio : TSDL_MixAudio_proc = Nil; +{$else} + procedure SDL_MixAudio(dst: pcuint8; src: pcuint8; len: cuint32; volume: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MixAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Mix audio data in a specified format. @@ -1135,8 +1360,16 @@ procedure SDL_MixAudio(dst: pcuint8; src: pcuint8; len: cuint32; volume: cint); * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MixAudioFormat_proc = procedure(dst: pcuint8; src: pcuint8; format: TSDL_AudioFormat; len: cuint32; volume: cint); cdecl; +Var + SDL_MixAudioFormat : TSDL_MixAudioFormat_proc = Nil; +{$else} + procedure SDL_MixAudioFormat(dst: pcuint8; src: pcuint8; format: TSDL_AudioFormat; len: cuint32; volume: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MixAudioFormat' {$ENDIF} {$ENDIF}; +{$endif} {** * Queue more audio on non-callback devices. @@ -1184,8 +1417,16 @@ procedure SDL_MixAudioFormat(dst: pcuint8; src: pcuint8; format: TSDL_AudioForma * \sa SDL_ClearQueuedAudio * \sa SDL_GetQueuedAudioSize *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_QueueAudio_func = function(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): cint; cdecl; +Var + SDL_QueueAudio : TSDL_QueueAudio_func = Nil; +{$else} + function SDL_QueueAudio(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_QueueAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Dequeue more audio on non-callback devices. @@ -1233,8 +1474,16 @@ function SDL_QueueAudio(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): c * \sa SDL_ClearQueuedAudio * \sa SDL_GetQueuedAudioSize *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DequeueAudio_func = function(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): cuint32; cdecl; +Var + SDL_DequeueAudio : TSDL_DequeueAudio_func = Nil; +{$else} + function SDL_DequeueAudio(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DequeueAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of bytes of still-queued audio. @@ -1268,8 +1517,16 @@ function SDL_DequeueAudio(dev: TSDL_AudioDeviceID; data: Pointer; len: cuint32): * \sa SDL_QueueAudio * \sa SDL_DequeueAudio *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetQueuedAudioSize_func = function(dev: TSDL_AudioDeviceID): cuint32; cdecl; +Var + SDL_GetQueuedAudioSize : TSDL_GetQueuedAudioSize_func = Nil; +{$else} + function SDL_GetQueuedAudioSize(dev: TSDL_AudioDeviceID): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetQueuedAudioSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Drop any queued audio data waiting to be sent to the hardware. @@ -1303,8 +1560,16 @@ function SDL_GetQueuedAudioSize(dev: TSDL_AudioDeviceID): cuint32; cdecl; * \sa SDL_QueueAudio * \sa SDL_DequeueAudio *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ClearQueuedAudio_proc = procedure(dev: TSDL_AudioDeviceID); cdecl; +Var + SDL_ClearQueuedAudio : TSDL_ClearQueuedAudio_proc = Nil; +{$else} + procedure SDL_ClearQueuedAudio(dev: TSDL_AudioDeviceID); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ClearQueuedAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Audio lock functions @@ -1333,8 +1598,15 @@ procedure SDL_ClearQueuedAudio(dev: TSDL_AudioDeviceID); cdecl; * \sa SDL_UnlockAudio * \sa SDL_UnlockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockAudio_proc = procedure ; cdecl; +Var + SDL_LockAudio : TSDL_LockAudio_proc = Nil; +{$else} procedure SDL_LockAudio; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockAudio' {$ENDIF} {$ENDIF}; +{$endif} {** * Use this function to lock out the audio callback function for a specified @@ -1373,8 +1645,16 @@ procedure SDL_LockAudio; cdecl; * * \sa SDL_UnlockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockAudioDevice_proc = procedure(dev: TSDL_AudioDeviceID); cdecl; +Var + SDL_LockAudioDevice : TSDL_LockAudioDevice_proc = Nil; +{$else} + procedure SDL_LockAudioDevice(dev: TSDL_AudioDeviceID); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockAudioDevice' {$ENDIF} {$ENDIF}; +{$endif} {** * This function is a legacy means of unlocking the audio device. @@ -1393,9 +1673,15 @@ procedure SDL_LockAudioDevice(dev: TSDL_AudioDeviceID); cdecl; * \sa SDL_LockAudio * \sa SDL_UnlockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnlockAudio_proc = procedure ; cdecl; +Var + SDL_UnlockAudio : TSDL_UnlockAudio_proc = Nil; +{$else} procedure SDL_UnlockAudio; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Unlock' {$ENDIF} {$ENDIF}; - + {$endif} {** * Use this function to unlock the audio callback function for a specified * device. @@ -1408,8 +1694,16 @@ procedure SDL_UnlockAudio; cdecl; * * \sa SDL_LockAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnlockAudioDevice_proc = procedure(dev: TSDL_AudioDeviceID); cdecl; +Var + SDL_UnlockAudioDevice : TSDL_UnlockAudioDevice_proc = Nil; +{$else} + procedure SDL_UnlockAudioDevice(dev: TSDL_AudioDeviceID); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnlockAudioDevice' {$ENDIF} {$ENDIF}; +{$endif} {*Audio lock functions*} @@ -1428,9 +1722,15 @@ procedure SDL_UnlockAudioDevice(dev: TSDL_AudioDeviceID); cdecl; * * \sa SDL_OpenAudio *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CloseAudio_proc = procedure ; cdecl; +Var + SDL_CloseAudio : TSDL_CloseAudio_proc = Nil; +{$else} procedure SDL_CloseAudio; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CloseAudio' {$ENDIF} {$ENDIF}; - +{$endif} {** * Use this function to shut down audio processing and close the audio device. * @@ -1453,6 +1753,14 @@ procedure SDL_CloseAudio; cdecl; * * \sa SDL_OpenAudioDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CloseAudioDevice_proc = procedure(dev: TSDL_AudioDeviceID); cdecl; +Var + SDL_CloseAudioDevice : TSDL_CloseAudioDevice_proc = Nil; +{$else} + procedure SDL_CloseAudioDevice(dev: TSDL_AudioDeviceID); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CloseAudioDevice' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlblendmode.inc b/units/sdlblendmode.inc index 15dfb17..c4ea1b3 100644 --- a/units/sdlblendmode.inc +++ b/units/sdlblendmode.inc @@ -78,5 +78,13 @@ const * and * dstA = dstA * dstAlphaFactor alphaOperation srcA * srcAlphaFactor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ComposeCustomBlendMode_func = function(srcColorFactor, dstColorFactor: TSDL_BlendFactor; colorOperation: TSDL_BlendOperation; srcAlphaFactor, dstAlphaFactor: TSDL_BlendFactor; alphaOperation: TSDL_BlendOperation): TSDL_BlendMode; cdecl; +Var + SDL_ComposeCustomBlendMode : TSDL_ComposeCustomBlendMode_func = Nil; +{$else} + function SDL_ComposeCustomBlendMode(srcColorFactor, dstColorFactor: TSDL_BlendFactor; colorOperation: TSDL_BlendOperation; srcAlphaFactor, dstAlphaFactor: TSDL_BlendFactor; alphaOperation: TSDL_BlendOperation): TSDL_BlendMode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ComposeCustomBlendMode' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlclipboard.inc b/units/sdlclipboard.inc index 1b3929f..b38b579 100644 --- a/units/sdlclipboard.inc +++ b/units/sdlclipboard.inc @@ -19,8 +19,16 @@ * \sa SDL_GetClipboardText * \sa SDL_HasClipboardText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetClipboardText_func = function(text: PAnsiChar): cint; cdecl; +Var + SDL_SetClipboardText : TSDL_SetClipboardText_func = Nil; +{$else} + function SDL_SetClipboardText(text: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetClipboardText' {$ENDIF} {$ENDIF}; +{$endif} {* * Get UTF-8 text from the clipboard, which must be freed with SDL_free(). @@ -38,8 +46,16 @@ function SDL_SetClipboardText(text: PAnsiChar): cint; cdecl; * \sa SDL_HasClipboardText * \sa SDL_SetClipboardText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetClipboardText_func = function(): PAnsiChar; cdecl; +Var + SDL_GetClipboardText : TSDL_GetClipboardText_func = Nil; +{$else} + function SDL_GetClipboardText(): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetClipboardText' {$ENDIF} {$ENDIF}; +{$endif} {* * Query whether the clipboard exists and contains a non-empty text string. @@ -51,8 +67,16 @@ function SDL_GetClipboardText(): PAnsiChar; cdecl; * \sa SDL_GetClipboardText * \sa SDL_SetClipboardText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasClipboardText_func = function(): TSDL_bool; cdecl; +Var + SDL_HasClipboardText : TSDL_HasClipboardText_func = Nil; +{$else} + function SDL_HasClipboardText(): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasClipboardText' {$ENDIF} {$ENDIF}; +{$endif} {* * Put UTF-8 text into the primary selection. @@ -66,8 +90,16 @@ function SDL_HasClipboardText(): TSDL_bool; cdecl; * \sa SDL_GetPrimarySelectionText * \sa SDL_HasPrimarySelectionText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetPrimarySelectionText_func = function(text: PAnsiChar): cint; cdecl; +Var + SDL_SetPrimarySelectionText : TSDL_SetPrimarySelectionText_func = Nil; +{$else} + function SDL_SetPrimarySelectionText(text: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetPrimarySelectionText' {$ENDIF} {$ENDIF}; +{$endif} {* * Get UTF-8 text from the primary selection, which must be freed with @@ -86,8 +118,16 @@ function SDL_SetPrimarySelectionText(text: PAnsiChar): cint; cdecl; * \sa SDL_HasPrimarySelectionText * \sa SDL_SetPrimarySelectionText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPrimarySelectionText_func = function(): PAnsiChar; cdecl; +Var + SDL_GetPrimarySelectionText : TSDL_GetPrimarySelectionText_func = Nil; +{$else} + function SDL_GetPrimarySelectionText(): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPrimarySelectionText' {$ENDIF} {$ENDIF}; +{$endif} {* * Query whether the primary selection exists and contains a non-empty text @@ -101,5 +141,13 @@ function SDL_GetPrimarySelectionText(): PAnsiChar; cdecl; * \sa SDL_GetPrimarySelectionText * \sa SDL_SetPrimarySelectionText } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasPrimarySelectionText_func = function(): TSDL_bool; cdecl; +Var + SDL_HasPrimarySelectionText : TSDL_HasPrimarySelectionText_func = Nil; +{$else} + function SDL_HasPrimarySelectionText(): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasPrimarySelectionText' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlcpuinfo.inc b/units/sdlcpuinfo.inc index 6cf3701..30062a9 100644 --- a/units/sdlcpuinfo.inc +++ b/units/sdlcpuinfo.inc @@ -11,8 +11,16 @@ const {** * This function returns the number of CPU cores available. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetCPUCount_func = function(): cint; cdecl; +Var + SDL_GetCPUCount : TSDL_GetCPUCount_func = Nil; +{$else} + function SDL_GetCPUCount(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCPUCount' {$ENDIF} {$ENDIF}; +{$endif} {** * This function returns the L1 cache line size of the CPU. @@ -20,6 +28,9 @@ function SDL_GetCPUCount(): cint; cdecl; * This is useful for determining multi-threaded structure padding * or SIMD prefetch sizes. *} + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} function SDL_GetCPUCacheLineSize(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCPUCacheLineSize' {$ENDIF} {$ENDIF}; @@ -213,3 +224,4 @@ function SDL_SIMDRealloc(mem: Pointer; const len: csize_t): Pointer; cdecl; procedure SDL_SIMDFree(mem: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SIMDFree' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlerror.inc b/units/sdlerror.inc index 49a370f..b06f393 100644 --- a/units/sdlerror.inc +++ b/units/sdlerror.inc @@ -13,8 +13,16 @@ * * \return -1, there is no error handling for this function *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetError_func = function(const fmt: PAnsiChar; args: array of const): cint; cdecl; +Var + SDL_SetError : TSDL_SetError_func = Nil; +{$else} + function SDL_SetError(const fmt: PAnsiChar; args: array of const): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetError' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the last error message that was set @@ -27,8 +35,15 @@ function SDL_SetError(const fmt: PAnsiChar; args: array of const): cint; cdecl; * * \return a pointer to the last error message that was set *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetError_func = function (): PAnsiChar; cdecl; +Var + SDL_GetError : TSDL_GetError_func = Nil; +{$else} function SDL_GetError: PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetError' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the last error message that was set for the current thread @@ -42,13 +57,28 @@ function SDL_GetError: PAnsiChar; cdecl; * * \return errstr *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetErrorMsg_func = function(const errstr: PAnsiChar; maxlen: cint): PAnsiChar; cdecl; +Var + SDL_GetErrorMsg : TSDL_GetErrorMsg_func = Nil; +{$else} + function SDL_GetErrorMsg(const errstr: PAnsiChar; maxlen: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetErrorMsg' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Clear the error message for the current thread *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ClearError_proc = procedure () cdecl; +Var + SDL_ClearError : TSDL_ClearError_proc = Nil; +{$else} procedure SDL_ClearError cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ClearError' {$ENDIF} {$ENDIF}; +{$endif} {*Internal error functions*} {** @@ -74,5 +104,13 @@ type SDL_LASTERROR); {* SDL_Error() unconditionally returns -1. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Error_func = function(code: TSDL_ErrorCode): cint; cdecl; +Var + SDL_Error : TSDL_Error_func = Nil; +{$else} + function SDL_Error(code: TSDL_ErrorCode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Error' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlevents.inc b/units/sdlevents.inc index 5f4fe6d..82e8dba 100644 --- a/units/sdlevents.inc +++ b/units/sdlevents.inc @@ -677,7 +677,14 @@ type * * This should only be run in the thread that sets the video mode. *} + {$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_PumpEvents_proc = Procedure (); cdecl; + var SDL_PumpEvents: TSDL_PumpEvents_proc = Nil; + {$else} + procedure SDL_PumpEvents cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PumpEvents' {$ENDIF} {$ENDIF}; + {$endif} const SDL_ADDEVENT = 0; @@ -707,6 +714,9 @@ type * * This function is thread-safe. *} + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} function SDL_PeepEvents(events: PSDL_Event; numevents: cint32; action: TSDL_EventAction; minType, maxType: TSDL_EventType): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PeepEvents' {$ENDIF} {$ENDIF}; @@ -732,9 +742,20 @@ type * event - If not nil, the next event is removed from the queue and * stored in that area. *} - - function SDL_PollEvent(event: PSDL_Event): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PollEvent' {$ENDIF} {$ENDIF}; - + {$endif} + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_PollEvent_func = function (event: PSDL_Event): cint32 cdecl; + Var + SDL_PollEvent : TSDL_PollEvent_func = Nil; + {$else} + function SDL_PollEvent(event: PSDL_Event): cint32 cdecl; +external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PollEvent' {$ENDIF} {$ENDIF}; + {$endif} + + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} {** * Waits indefinitely for the next available event. * @@ -766,6 +787,7 @@ type *} function SDL_PushEvent(event: PSDL_Event): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PumpEvents' {$ENDIF} {$ENDIF}; + {$endif} type PPSDL_EventFilter = ^PSDL_EventFilter; @@ -796,7 +818,11 @@ type * If the quit event is generated by an interrupt signal, it will bypass the * internal queue and be delivered to the application at the next event poll. *} - + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} + + procedure SDL_SetEventFilter(filter: TSDL_EventFilter; userdata: Pointer) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetEventFilter' {$ENDIF} {$ENDIF}; {** @@ -824,7 +850,7 @@ type *} procedure SDL_FilterEvents(filter: TSDL_EventFilter; userdata: Pointer) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FilterEvents' {$ENDIF} {$ENDIF}; - + {$endif} const SDL_QUERY = -1; @@ -841,8 +867,17 @@ const * - If state is set to SDL_QUERY, SDL_EventState() will return the * current processing state of the specified event. *} + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_EventState_func = function (type_: TSDL_EventType; state: cint32): cuint8 cdecl; + Var + SDL_EventState : TSDL_EventState_func = Nil; - function SDL_EventState(type_: TSDL_EventType; state: cint32): cuint8 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_EventState' {$ENDIF} {$ENDIF}; + {$else} + + function SDL_EventState(type_: TSDL_EventType; state: cint32): cuint8 cdecl; +external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_EventState' {$ENDIF} {$ENDIF}; + {$endif} function SDL_GetEventState(type_: TSDL_EventType): cuint8; @@ -853,5 +888,10 @@ const * If there aren't enough user-defined events left, this function * returns (Uint32)-1 *} + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} + function SDL_RegisterEvents(numevents: cint32): cuint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RegisterEvents' {$ENDIF} {$ENDIF}; + {$endif} diff --git a/units/sdlfilesystem.inc b/units/sdlfilesystem.inc index 39aeb31..e8f84b7 100644 --- a/units/sdlfilesystem.inc +++ b/units/sdlfilesystem.inc @@ -42,8 +42,16 @@ * * \sa SDL_GetPrefPath } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetBasePath_func = function(): PAnsiChar; cdecl; +Var + SDL_GetBasePath : TSDL_GetBasePath_func = Nil; +{$else} + function SDL_GetBasePath(): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetBasePath' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the user-and-app-specific path where files can be written. @@ -100,6 +108,14 @@ function SDL_GetBasePath(): PAnsiChar; cdecl; * * \sa SDL_GetBasePath } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPrefPath_func = function(org: PAnsiChar; app: PAnsiChar): PAnsiChar; cdecl; +Var + SDL_GetPrefPath : TSDL_GetPrefPath_func = Nil; +{$else} + function SDL_GetPrefPath(org: PAnsiChar; app: PAnsiChar): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPrefPath' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlgamecontroller.inc b/units/sdlgamecontroller.inc index e4b6712..f7c330a 100644 --- a/units/sdlgamecontroller.inc +++ b/units/sdlgamecontroller.inc @@ -96,9 +96,11 @@ type * Add or update an existing mapping configuration * * 1 if mapping is added, 0 if updated, -1 on error - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerAddMapping( mappingString: PAnsiChar ): cint cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerAddMapping' {$ENDIF} {$ENDIF}; - + {$endif} {** * Load a set of mappings from a seekable SDL data stream (memory or file), filtered by the current SDL_GetPlatform() * A community sourced database of controllers is available at https://raw.github.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt @@ -107,36 +109,67 @@ function SDL_GameControllerAddMapping( mappingString: PAnsiChar ): cint cdecl; e * * Returns number of mappings added, -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerAddMappingsFromRW_func = function(rw: PSDL_RWops; freerw: cint32):cint32; + cdecl; +Var + SDL_GameControllerAddMappingsFromRW : TSDL_GameControllerAddMappingsFromRW_func = Nil; +{$else} + function SDL_GameControllerAddMappingsFromRW(rw: PSDL_RWops; freerw: cint32):cint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerAddMappingsFromRW' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of mappings installed. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerNumMappings_func = function():cint; cdecl; +Var + SDL_GameControllerNumMappings : TSDL_GameControllerNumMappings_func = Nil; +{$else} + function SDL_GameControllerNumMappings():cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerNumMappings' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a mapping string for a GUID * * the mapping string. Must be freed with SDL_free. Returns NULL if no mapping is available *} +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerMappingForGUID( guid: TSDL_JoystickGUID ): PAnsiChar cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerMappingForGUID' {$ENDIF} {$ENDIF}; - + +{$endif} {** * Get the mapping at a particular index. * * Returns the mapping string. Must be freed with SDL_free(). * Returns NIL if the index is out of range. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerMappingForIndex_func = function(mapping_index: cint): PAnsiChar; cdecl; +Var + SDL_GameControllerMappingForIndex : TSDL_GameControllerMappingForIndex_func = Nil; +{$else} + function SDL_GameControllerMappingForIndex(mapping_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerMappingForIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a mapping string for an open GameController * * the mapping string. Must be freed with SDL_free. Returns NULL if no mapping is available - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerMapping( gamecontroller: PSDL_GameController ): PAnsiChar cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerMapping' {$ENDIF} {$ENDIF}; {** @@ -150,7 +183,7 @@ function SDL_IsGameController(joystick_index: cint): TSDL_Bool cdecl; external S * If no name can be found, this function returns NULL. *} function SDL_GameControllerNameForIndex(joystick_index: cint): PAnsiChar cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerNameForIndex' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the implementation dependent path for the game controller. * @@ -168,15 +201,31 @@ function SDL_GameControllerNameForIndex(joystick_index: cint): PAnsiChar cdecl; * * \sa SDL_GameControllerPath *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerPathForIndex_func = function(joystick_index: cint): PAnsiChar; cdecl; +Var + SDL_GameControllerPathForIndex : TSDL_GameControllerPathForIndex_func = Nil; +{$else} + function SDL_GameControllerPathForIndex(joystick_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerPathForIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the type of a game controller. * This can be called before any controllers are opened. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerTypeForIndex_func = function(joystick_index: cint): TSDL_GameControllerType; cdecl; +Var + SDL_GameControllerTypeForIndex : TSDL_GameControllerTypeForIndex_func = Nil; +{$else} + function SDL_GameControllerTypeForIndex(joystick_index: cint): TSDL_GameControllerType; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerTypeForIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the mapping of a game controller. @@ -185,8 +234,16 @@ function SDL_GameControllerTypeForIndex(joystick_index: cint): TSDL_GameControll * Returns the mapping string. Must be freed with SDL_free(). * Returns NIL if no mapping is available. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerMappingForDeviceIndex_func = function(joystick_index: cint): PAnsiChar; cdecl; +Var + SDL_GameControllerMappingForDeviceIndex : TSDL_GameControllerMappingForDeviceIndex_func = Nil; +{$else} + function SDL_GameControllerMappingForDeviceIndex(joystick_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerMappingForDeviceIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Open a game controller for use. @@ -195,14 +252,24 @@ function SDL_GameControllerMappingForDeviceIndex(joystick_index: cint): PAnsiCha * events. * * A controller identifier, or NULL if an error occurred. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerOpen(joystick_index: cint): PSDL_GameController cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerOpen' {$ENDIF} {$ENDIF}; - + {$endif} {** * Return the SDL_GameController associated with an instance id. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerFromInstanceID_func = function(joyid: TSDL_JoystickID): PSDL_GameController; cdecl; +Var + SDL_GameControllerFromInstanceID : TSDL_GameControllerFromInstanceID_func = Nil; +{$else} + function SDL_GameControllerFromInstanceID(joyid: TSDL_JoystickID): PSDL_GameController; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerFromInstanceID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the SDL_GameController associated with a player index. @@ -211,14 +278,24 @@ function SDL_GameControllerFromInstanceID(joyid: TSDL_JoystickID): PSDL_GameCont * instance id! * *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerFromPlayerIndex_func = function(player_index: cint): PSDL_GameController; cdecl; +Var + SDL_GameControllerFromPlayerIndex : TSDL_GameControllerFromPlayerIndex_func = Nil; +{$else} + function SDL_GameControllerFromPlayerIndex(player_index: cint): PSDL_GameController; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerFromPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Return the name for this currently opened controller - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerName(gamecontroller: PSDL_GameController): PAnsiChar cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerName' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the implementation-dependent path for an opened game controller. * @@ -234,8 +311,16 @@ function SDL_GameControllerName(gamecontroller: PSDL_GameController): PAnsiChar * * \sa SDL_GameControllerPathForIndex *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerPath_func = function(gamecontroller: PSDL_GameController): PAnsiChar; cdecl; +Var + SDL_GameControllerPath : TSDL_GameControllerPath_func = Nil; +{$else} + function SDL_GameControllerPath(gamecontroller: PSDL_GameController): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerPath' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the type of this currently opened controller @@ -243,8 +328,16 @@ function SDL_GameControllerPath(gamecontroller: PSDL_GameController): PAnsiChar; * This is the same name as returned by SDL_GameControllerTypeForIndex(), but * it takes a controller identifier instead of the (unstable) device index. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetType_func = function(gamecontroller: PSDL_GameController): TSDL_GameControllerType; cdecl; +Var + SDL_GameControllerGetType : TSDL_GameControllerGetType_func = Nil; +{$else} + function SDL_GameControllerGetType(gamecontroller: PSDL_GameController): TSDL_GameControllerType; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetType' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the player index of an opened game controller. @@ -252,14 +345,30 @@ function SDL_GameControllerGetType(gamecontroller: PSDL_GameController): TSDL_Ga * * Returns the player index for controller, or -1 if it's not available. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetPlayerIndex_func = function(gamecontroller: PSDL_GameController): cint; cdecl; +Var + SDL_GameControllerGetPlayerIndex : TSDL_GameControllerGetPlayerIndex_func = Nil; +{$else} + function SDL_GameControllerGetPlayerIndex(gamecontroller: PSDL_GameController): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the player index of an opened game controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerSetPlayerIndex_proc = procedure(gamecontroller: PSDL_GameController; player_index: cint); cdecl; +Var + SDL_GameControllerSetPlayerIndex : TSDL_GameControllerSetPlayerIndex_proc = Nil; +{$else} + procedure SDL_GameControllerSetPlayerIndex(gamecontroller: PSDL_GameController; player_index: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerSetPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB vendor ID of an opened controller, if available. @@ -271,22 +380,46 @@ procedure SDL_GameControllerSetPlayerIndex(gamecontroller: PSDL_GameController; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetVendor_func = function(gamecontroller: PSDL_GameController): cuint16; cdecl; +Var + SDL_GameControllerGetVendor : TSDL_GameControllerGetVendor_func = Nil; +{$else} + function SDL_GameControllerGetVendor(gamecontroller: PSDL_GameController): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetVendor' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB product ID of an opened controller, if available. * If the product ID isn't available, this function returns 0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetProduct_func = function(gamecontroller: PSDL_GameController): cuint16; cdecl; +Var + SDL_GameControllerGetProduct : TSDL_GameControllerGetProduct_func = Nil; +{$else} + function SDL_GameControllerGetProduct(gamecontroller: PSDL_GameController): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetProduct' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the product version of an opened controller, if available. * If the product version isn't available, this function returns 0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetProductVersion_func = function(gamecontroller: PSDL_GameController): cuint16; cdecl; +Var + SDL_GameControllerGetProductVersion : TSDL_GameControllerGetProductVersion_func = Nil; +{$else} + function SDL_GameControllerGetProductVersion(gamecontroller: PSDL_GameController): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetProductVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the firmware version of an opened controller, if available. @@ -298,8 +431,16 @@ function SDL_GameControllerGetProductVersion(gamecontroller: PSDL_GameController * * \since This function is available since SDL 2.24.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetFirmwareVersion_func = function(gamecontroller: PSDL_GameController): cuint16; cdecl; +Var + SDL_GameControllerGetFirmwareVersion : TSDL_GameControllerGetFirmwareVersion_func = Nil; +{$else} + function SDL_GameControllerGetFirmwareVersion(gamecontroller: PSDL_GameController): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetFirmwareVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the serial number of an opened controller, if available. @@ -307,8 +448,16 @@ function SDL_GameControllerGetFirmwareVersion(gamecontroller: PSDL_GameControlle * Returns a string containing the serial number of the controller, * or NIL if it is not available. Do _not_ free the string with SDL_free(). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetSerial_func = function(gamecontroller: PSDL_GameController): PAnsiChar; cdecl; +Var + SDL_GameControllerGetSerial : TSDL_GameControllerGetSerial_func = Nil; +{$else} + function SDL_GameControllerGetSerial(gamecontroller: PSDL_GameController): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetSerial' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the Steam Input handle of an opened controller, if available. @@ -321,13 +470,23 @@ function SDL_GameControllerGetSerial(gamecontroller: PSDL_GameController): PAnsi * * \since This function is available since SDL 2.30.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetSteamHandle_func = function(gamecontroller: PSDL_GameController): cuint64; cdecl; +Var + SDL_GameControllerGetSteamHandle : TSDL_GameControllerGetSteamHandle_func = Nil; +{$else} + function SDL_GameControllerGetSteamHandle(gamecontroller: PSDL_GameController): cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetSteamHandle' {$ENDIF} {$ENDIF}; +{$endif} {** * Returns SDL_TRUE if the controller has been opened and currently connected, * or SDL_FALSE if it has not. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerGetAttached(gamecontroller: PSDL_GameController): TSDL_Bool cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetAttached' {$ENDIF} {$ENDIF}; {** @@ -353,7 +512,7 @@ function SDL_GameControllerEventState(state: cint): cint cdecl; external SDL_Lib * events are enabled. *} procedure SDL_GameControllerUpdate() cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerUpdate' {$ENDIF} {$ENDIF}; - + {$endif} {** * The list of axes available from a controller *} @@ -371,7 +530,9 @@ const SDL_CONTROLLER_AXIS_TRIGGERLEFT = TSDL_GameControllerAxis(4); SDL_CONTROLLER_AXIS_TRIGGERRIGHT = TSDL_GameControllerAxis(5); SDL_CONTROLLER_AXIS_MAX = TSDL_GameControllerAxis(6); - + {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} {** * turn this string into a axis mapping *} @@ -386,15 +547,23 @@ function SDL_GameControllerGetStringForAxis(axis: TSDL_GameControllerAxis): PAns * Get the SDL joystick layer binding for this controller button mapping *} function SDL_GameControllerGetBindForAxis(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): TSDL_GameControllerButtonBind cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetBindForAxis' {$ENDIF} {$ENDIF}; - + {$endif} {** * Query whether a game controller has a given axis. * * This merely reports whether the controller's mapping defined this axis, * as that is all the information SDL has about the physical device. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasAxis_func = function(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasAxis : TSDL_GameControllerHasAxis_func = Nil; +{$else} + function SDL_GameControllerHasAxis(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasAxis' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of an axis control on a game controller. @@ -402,9 +571,11 @@ function SDL_GameControllerHasAxis(gamecontroller: PSDL_GameController; axis: TS * The state is a value ranging from -32768 to 32767. * * The axis indices start at index 0. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerGetAxis(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): cint16 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetAxis' {$ENDIF} {$ENDIF}; - + {$endif} {** * The list of buttons available from a controller *} @@ -436,7 +607,9 @@ const SDL_CONTROLLER_BUTTON_PADDLE4 = TSDL_GameControllerButton(19); {**< Xbox Elite paddle P4 *} SDL_CONTROLLER_BUTTON_TOUCHPAD = TSDL_GameControllerButton(20); {**< PS4/PS5 touchpad button *} SDL_CONTROLLER_BUTTON_MAX = TSDL_GameControllerButton(21); - + {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} {** * turn this string into a button mapping *} @@ -451,38 +624,76 @@ function SDL_GameControllerGetStringForButton(button: TSDL_GameControllerButton) * Get the SDL joystick layer binding for this controller button mapping *} function SDL_GameControllerGetBindForButton(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): TSDL_GameControllerButtonBind cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetBindForButton' {$ENDIF} {$ENDIF}; - + {$endif} {** * Query whether a game controller has a given button. * * This merely reports whether the controller's mapping defined this button, * as that is all the information SDL has about the physical device. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasButton_func = function(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasButton : TSDL_GameControllerHasButton_func = Nil; +{$else} + function SDL_GameControllerHasButton(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasButton' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of a button on a game controller. * * The button indices start at index 0. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GameControllerGetButton(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): cuint8 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetButton' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the number of touchpads on a game controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetNumTouchpads_func = function(gamecontroller: PSDL_GameController): cint; cdecl; +Var + SDL_GameControllerGetNumTouchpads : TSDL_GameControllerGetNumTouchpads_func = Nil; +{$else} + function SDL_GameControllerGetNumTouchpads(gamecontroller: PSDL_GameController): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetNumTouchpads' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of supported simultaneous fingers on a touchpad on a game controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetNumTouchpadFingers_func = function(gamecontroller: PSDL_GameController; touchpad: cint): cint; cdecl; +Var + SDL_GameControllerGetNumTouchpadFingers : TSDL_GameControllerGetNumTouchpadFingers_func = Nil; +{$else} + function SDL_GameControllerGetNumTouchpadFingers(gamecontroller: PSDL_GameController; touchpad: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetNumTouchpadFingers' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of a finger on a touchpad on a game controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetTouchpadFinger_func = function( + gamecontroller: PSDL_GameController; + touchpad, finger: cint; + state: pcuint8; + x, y, pressure: pcfloat + ): cint; cdecl; +Var + SDL_GameControllerGetTouchpadFinger : TSDL_GameControllerGetTouchpadFinger_func = Nil; +{$else} + function SDL_GameControllerGetTouchpadFinger( gamecontroller: PSDL_GameController; touchpad, finger: cint; @@ -490,24 +701,49 @@ function SDL_GameControllerGetTouchpadFinger( x, y, pressure: pcfloat ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetTouchpadFinger' {$ENDIF} {$ENDIF}; +{$endif} {** * Return whether a game controller has a particular sensor. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasSensor_func = function(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasSensor : TSDL_GameControllerHasSensor_func = Nil; +{$else} + function SDL_GameControllerHasSensor(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasSensor' {$ENDIF} {$ENDIF}; +{$endif} {** * Set whether data reporting for a game controller sensor is enabled. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerSetSensorEnabled_func = function(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType; enabled: TSDL_bool): cint; cdecl; +Var + SDL_GameControllerSetSensorEnabled : TSDL_GameControllerSetSensorEnabled_func = Nil; +{$else} + function SDL_GameControllerSetSensorEnabled(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType; enabled: TSDL_bool): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerSetSensorEnabled' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether sensor data reporting is enabled for a game controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerIsSensorEnabled_func = function(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): TSDL_Bool; cdecl; +Var + SDL_GameControllerIsSensorEnabled : TSDL_GameControllerIsSensorEnabled_func = Nil; +{$else} + function SDL_GameControllerIsSensorEnabled(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerIsSensorEnabled' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the data rate (number of events per second) of @@ -515,8 +751,16 @@ function SDL_GameControllerIsSensorEnabled(gamecontroller: PSDL_GameController; * * Returns the data rate, or 0.0 if the data rate is not available. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetSensorDataRate_func = function(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): cfloat; cdecl; +Var + SDL_GameControllerGetSensorDataRate : TSDL_GameControllerGetSensorDataRate_func = Nil; +{$else} + function SDL_GameControllerGetSensorDataRate(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetSensorDataRate' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of a game controller sensor. @@ -524,8 +768,16 @@ function SDL_GameControllerGetSensorDataRate(gamecontroller: PSDL_GameController * The number of values and interpretation of the data is sensor dependent. * See sdlsensor.inc for the details for each type of sensor. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetSensorData_func = function(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType; data: pcfloat; num_values: cint): cint; cdecl; +Var + SDL_GameControllerGetSensorData : TSDL_GameControllerGetSensorData_func = Nil; +{$else} + function SDL_GameControllerGetSensorData(gamecontroller: PSDL_GameController; senstype: TSDL_SensorType; data: pcfloat; num_values: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetSensorData' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of a game controller sensor with the timestamp of the @@ -544,6 +796,19 @@ function SDL_GameControllerGetSensorData(gamecontroller: PSDL_GameController; se * * \since This function is available since SDL 2.26.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetSensorDataWithTimestamp_func = function( + gamecontroller: PSDL_GameController; + senstype: TSDL_SensorType; + timestamp: pcuint64; + data: pcfloat; + num_values: cint + ): cint; cdecl; +Var + SDL_GameControllerGetSensorDataWithTimestamp : TSDL_GameControllerGetSensorDataWithTimestamp_func = Nil; +{$else} + function SDL_GameControllerGetSensorDataWithTimestamp( gamecontroller: PSDL_GameController; senstype: TSDL_SensorType; @@ -552,12 +817,21 @@ function SDL_GameControllerGetSensorDataWithTimestamp( num_values: cint ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetSensorDataWithTimestamp' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a game controller has rumble support. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasRumble_func = function(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasRumble : TSDL_GameControllerHasRumble_func = Nil; +{$else} + function SDL_GameControllerHasRumble(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasRumble' {$ENDIF} {$ENDIF}; +{$endif} {** * Start a rumble effect on a game controller. @@ -567,18 +841,39 @@ function SDL_GameControllerHasRumble(gamecontroller: PSDL_GameController): TSDL_ * * Returns 0, or -1 if rumble isn't supported on this controller. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerRumble_func = function( + gamecontroller: PSDL_GameController; + low_frequency_rumble, high_frequency_rumble: cuint16; + duration_ms: cuint32 + ): cint; cdecl; + +Var + SDL_GameControllerRumble : TSDL_GameControllerRumble_func = Nil; +{$else} + function SDL_GameControllerRumble( gamecontroller: PSDL_GameController; low_frequency_rumble, high_frequency_rumble: cuint16; duration_ms: cuint32 ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerRumble' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a game controller has rumble support on triggers. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasRumbleTriggers_func = function(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasRumbleTriggers : TSDL_GameControllerHasRumbleTriggers_func = Nil; +{$else} + function SDL_GameControllerHasRumbleTriggers(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasRumbleTriggers' {$ENDIF} {$ENDIF}; +{$endif} {** * Start a rumble effect in the game controller's triggers. @@ -593,26 +888,55 @@ function SDL_GameControllerHasRumbleTriggers(gamecontroller: PSDL_GameController * * Returns 0, or -1 if trigger rumble isn't supported on this controller *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerRumbleTriggers_func = function( + gamecontroller: PSDL_GameController; + left_rumble, right_rumble: cuint16; + duration_ms: cuint32 + ): cint; cdecl; + +Var + SDL_GameControllerRumbleTriggers : TSDL_GameControllerRumbleTriggers_func = Nil; +{$else} + function SDL_GameControllerRumbleTriggers( gamecontroller: PSDL_GameController; left_rumble, right_rumble: cuint16; duration_ms: cuint32 ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerRumbleTriggers' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a game controller has an LED. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerHasLED_func = function(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; +Var + SDL_GameControllerHasLED : TSDL_GameControllerHasLED_func = Nil; +{$else} + function SDL_GameControllerHasLED(gamecontroller: PSDL_GameController): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerHasLED' {$ENDIF} {$ENDIF}; +{$endif} {** * Update a game controller's LED color. * * Returns 0, or -1 if this controller does not have a modifiable LED. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerSetLED_func = function(gamecontroller: PSDL_GameController; red, green, blue: cuint8): cint; cdecl; +Var + SDL_GameControllerSetLED : TSDL_GameControllerSetLED_func = Nil; +{$else} + function SDL_GameControllerSetLED(gamecontroller: PSDL_GameController; red, green, blue: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerSetLED' {$ENDIF} {$ENDIF}; +{$endif} {** * Send a controller-specific effect packet. @@ -620,14 +944,24 @@ function SDL_GameControllerSetLED(gamecontroller: PSDL_GameController; red, gree * Returns 0, or -1 if this controller or driver does not * support effect packets. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerSendEffect_func = function(gamecontroller: PSDL_GameController; data: Pointer; size: cint): cint; cdecl; +Var + SDL_GameControllerSendEffect : TSDL_GameControllerSendEffect_func = Nil; +{$else} + function SDL_GameControllerSendEffect(gamecontroller: PSDL_GameController; data: Pointer; size: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerSendEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Close a controller previously opened with SDL_GameControllerOpen(). - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} procedure SDL_GameControllerClose(gamecontroller: PSDL_GameController) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerClose' {$ENDIF} {$ENDIF}; - + {$endif} {** * Return the sfSymbolsName for a given axis on a game controller * on Apple platforms. @@ -635,8 +969,16 @@ procedure SDL_GameControllerClose(gamecontroller: PSDL_GameController) cdecl; ex * Returns the sfSymbolsName, or NIL if the name can't be found. * Do _not_ pass this string to SDL_free(). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetAppleSFSymbolsNameForAxis_func = function(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): PAnsiChar; cdecl; +Var + SDL_GameControllerGetAppleSFSymbolsNameForAxis : TSDL_GameControllerGetAppleSFSymbolsNameForAxis_func = Nil; +{$else} + function SDL_GameControllerGetAppleSFSymbolsNameForAxis(gamecontroller: PSDL_GameController; axis: TSDL_GameControllerAxis): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetAppleSFSymbolsNameForAxis' {$ENDIF} {$ENDIF}; +{$endif} {** * Return the sfSymbolsName for a given button on a game controller @@ -645,8 +987,16 @@ function SDL_GameControllerGetAppleSFSymbolsNameForAxis(gamecontroller: PSDL_Gam * Returns the sfSymbolsName, or NIL if the name can't be found. * Do _not_ pass this string to SDL_free(). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GameControllerGetAppleSFSymbolsNameForButton_func = function(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): PAnsiChar; cdecl; +Var + SDL_GameControllerGetAppleSFSymbolsNameForButton : TSDL_GameControllerGetAppleSFSymbolsNameForButton_func = Nil; +{$else} + function SDL_GameControllerGetAppleSFSymbolsNameForButton(gamecontroller: PSDL_GameController; button: TSDL_GameControllerButton): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GameControllerGetAppleSFSymbolsNameForButton' {$ENDIF} {$ENDIF}; +{$endif} function SDL_GameControllerAddMappingsFromFile(Const FilePath:PAnsiChar):cint32; diff --git a/units/sdlgesture.inc b/units/sdlgesture.inc index 8ab4db4..d170932 100644 --- a/units/sdlgesture.inc +++ b/units/sdlgesture.inc @@ -20,8 +20,16 @@ type * * \sa SDL_GetTouchDevice *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RecordGesture_func = function(touchId: TSDL_TouchID): cint; cdecl; +Var + SDL_RecordGesture : TSDL_RecordGesture_func = Nil; +{$else} + function SDL_RecordGesture(touchId: TSDL_TouchID): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RecordGesture' {$ENDIF} {$ENDIF}; +{$endif} {** * Save all currently loaded Dollar Gesture templates. @@ -35,8 +43,16 @@ function SDL_RecordGesture(touchId: TSDL_TouchID): cint; cdecl; * \sa SDL_LoadDollarTemplates * \sa SDL_SaveDollarTemplate *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SaveAllDollarTemplates_func = function(dst: PSDL_RWops): cint; cdecl; +Var + SDL_SaveAllDollarTemplates : TSDL_SaveAllDollarTemplates_func = Nil; +{$else} + function SDL_SaveAllDollarTemplates(dst: PSDL_RWops): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SaveAllDollarTemplates' {$ENDIF} {$ENDIF}; +{$endif} {** * Save a currently loaded Dollar Gesture template. @@ -51,8 +67,16 @@ function SDL_SaveAllDollarTemplates(dst: PSDL_RWops): cint; cdecl; * \sa SDL_LoadDollarTemplates * \sa SDL_SaveAllDollarTemplates *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SaveDollarTemplate_func = function(gestureId: TSDL_GestureID; dst: PSDL_RWops): cint; cdecl; +Var + SDL_SaveDollarTemplate : TSDL_SaveDollarTemplate_func = Nil; +{$else} + function SDL_SaveDollarTemplate(gestureId: TSDL_GestureID; dst: PSDL_RWops): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SaveDollarTemplate' {$ENDIF} {$ENDIF}; +{$endif} {** @@ -68,5 +92,13 @@ function SDL_SaveDollarTemplate(gestureId: TSDL_GestureID; dst: PSDL_RWops): cin * \sa SDL_SaveAllDollarTemplates * \sa SDL_SaveDollarTemplate *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadDollarTemplates_func = function(touchId: TSDL_TouchID; src: PSDL_RWops): cint; cdecl; +Var + SDL_LoadDollarTemplates : TSDL_LoadDollarTemplates_func = Nil; +{$else} + function SDL_LoadDollarTemplates(touchId: TSDL_TouchID; src: PSDL_RWops): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadDollarTemplates' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlguid.inc b/units/sdlguid.inc index cd950ce..5ce96d1 100644 --- a/units/sdlguid.inc +++ b/units/sdlguid.inc @@ -39,8 +39,16 @@ type * * \sa SDL_GUIDFromString *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GUIDToString_proc = procedure(guid: TSDL_GUID; pszGUID: PAnsiChar; cbGUID: cint); cdecl; +Var + SDL_GUIDToString : TSDL_GUIDToString_proc = Nil; +{$else} + procedure SDL_GUIDToString(guid: TSDL_GUID; pszGUID: PAnsiChar; cbGUID: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GUIDToString' {$ENDIF} {$ENDIF}; +{$endif} {** * Convert a GUID string into a ::SDL_GUID structure. @@ -56,5 +64,13 @@ procedure SDL_GUIDToString(guid: TSDL_GUID; pszGUID: PAnsiChar; cbGUID: cint); c * * \sa SDL_GUIDToString *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GUIDFromString_func = function(const pchGUID: PAnsiChar): TSDL_GUID; cdecl; +Var + SDL_GUIDFromString : TSDL_GUIDFromString_func = Nil; +{$else} + function SDL_GUIDFromString(const pchGUID: PAnsiChar): TSDL_GUID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GUIDFromString' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlhaptic.inc b/units/sdlhaptic.inc index 48d36b8..edab451 100644 --- a/units/sdlhaptic.inc +++ b/units/sdlhaptic.inc @@ -801,10 +801,12 @@ type * \since This function is available since SDL 2.0.0. * * \sa SDL_HapticName - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_NumHaptics: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_NumHaptics' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the implementation dependent name of a haptic device. * @@ -819,8 +821,16 @@ function SDL_NumHaptics: cint; cdecl; * * \sa SDL_NumHaptics *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticName_func = function(device_index: cint): PAnsiChar; cdecl; +Var + SDL_HapticName : TSDL_HapticName_func = Nil; +{$else} + function SDL_HapticName(device_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticName' {$ENDIF} {$ENDIF}; +{$endif} {** * Open a haptic device for use. @@ -847,8 +857,16 @@ function SDL_HapticName(device_index: cint): PAnsiChar; cdecl; * \sa SDL_HapticSetGain * \sa SDL_HapticStopAll *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticOpen_func = function(device_index: cint): PSDL_Haptic; cdecl; +Var + SDL_HapticOpen : TSDL_HapticOpen_func = Nil; +{$else} + function SDL_HapticOpen(device_index: cint): PSDL_Haptic; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticOpen' {$ENDIF} {$ENDIF}; +{$endif} {** * Check if the haptic device at the designated index has been opened. @@ -862,8 +880,16 @@ function SDL_HapticOpen(device_index: cint): PSDL_Haptic; cdecl; * \sa SDL_HapticIndex * \sa SDL_HapticOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticOpened_func = function(device_index: cint): cint; cdecl; +Var + SDL_HapticOpened : TSDL_HapticOpened_func = Nil; +{$else} + function SDL_HapticOpened(device_index: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticOpened' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the index of a haptic device. @@ -877,8 +903,16 @@ function SDL_HapticOpened(device_index: cint): cint; cdecl; * \sa SDL_HapticOpen * \sa SDL_HapticOpened *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticIndex_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticIndex : TSDL_HapticIndex_func = Nil; +{$else} + function SDL_HapticIndex(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether or not the current mouse has haptic capabilities. @@ -888,7 +922,9 @@ function SDL_HapticIndex(haptic: PSDL_Haptic): cint; cdecl; * \since This function is available since SDL 2.0.0. * * \sa SDL_HapticOpenFromMouse - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_MouseIsHaptic: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MouseInHaptic' {$ENDIF} {$ENDIF}; @@ -905,7 +941,7 @@ function SDL_MouseIsHaptic: cint; cdecl; *} function SDL_HapticOpenFromMouse: PSDL_Haptic; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticOpenFromMouse' {$ENDIF} {$ENDIF}; - + {$endif} {** * Query if a joystick has haptic features. * @@ -918,8 +954,16 @@ function SDL_HapticOpenFromMouse: PSDL_Haptic; cdecl; * * \sa SDL_HapticOpenFromJoystick *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickIsHaptic_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickIsHaptic : TSDL_JoystickIsHaptic_func = Nil; +{$else} + function SDL_JoystickIsHaptic(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickIsHaptic' {$ENDIF} {$ENDIF}; +{$endif} {** * Open a haptic device for use from a joystick device. @@ -942,8 +986,16 @@ function SDL_JoystickIsHaptic(joystick: PSDL_Joystick): cint; cdecl; * \sa SDL_HapticOpen * \sa SDL_JoystickIsHaptic *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticOpenFromJoystick_func = function(joystick: PSDL_Joystick): PSDL_Haptic; cdecl; +Var + SDL_HapticOpenFromJoystick : TSDL_HapticOpenFromJoystick_func = Nil; +{$else} + function SDL_HapticOpenFromJoystick(joystick: PSDL_Joystick): PSDL_Haptic; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticOpenFromJoystick' {$ENDIF} {$ENDIF}; +{$endif} {** * Close a haptic device previously opened with SDL_HapticOpen(). @@ -954,8 +1006,16 @@ function SDL_HapticOpenFromJoystick(joystick: PSDL_Joystick): PSDL_Haptic; cdecl * * \sa SDL_HapticOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticClose_proc = procedure(haptic: PSDL_Haptic); cdecl; +Var + SDL_HapticClose : TSDL_HapticClose_proc = Nil; +{$else} + procedure SDL_HapticClose(haptic: PSDL_Haptic); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticClose' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of effects a haptic device can store. @@ -973,8 +1033,16 @@ procedure SDL_HapticClose(haptic: PSDL_Haptic); cdecl; * \sa SDL_HapticNumEffectsPlaying * \sa SDL_HapticQuery *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticNumEffects_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticNumEffects : TSDL_HapticNumEffects_func = Nil; +{$else} + function SDL_HapticNumEffects(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticNumEffects' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of effects a haptic device can play at the same time. @@ -991,8 +1059,16 @@ function SDL_HapticNumEffects(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticNumEffects * \sa SDL_HapticQuery *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticNumEffectsPlaying_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticNumEffectsPlaying : TSDL_HapticNumEffectsPlaying_func = Nil; +{$else} + function SDL_HapticNumEffectsPlaying(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticNumEffectsPlaying' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the haptic device's supported features in bitwise manner. @@ -1006,8 +1082,16 @@ function SDL_HapticNumEffectsPlaying(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticEffectSupported * \sa SDL_HapticNumEffects *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticQuery_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticQuery : TSDL_HapticQuery_func = Nil; +{$else} + function SDL_HapticQuery(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticQuery' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of haptic axes the device has. @@ -1021,8 +1105,16 @@ function SDL_HapticQuery(haptic: PSDL_Haptic): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticNumAxes_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticNumAxes : TSDL_HapticNumAxes_func = Nil; +{$else} + function SDL_HapticNumAxes(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticNumAxes' {$ENDIF} {$ENDIF}; +{$endif} {** * Check to see if an effect is supported by a haptic device. @@ -1038,8 +1130,16 @@ function SDL_HapticNumAxes(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticNewEffect * \sa SDL_HapticQuery *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticEffectSupported_func = function(haptic: PSDL_Haptic; effect: PSDL_HapticEffect): cint; cdecl; +Var + SDL_HapticEffectSupported : TSDL_HapticEffectSupported_func = Nil; +{$else} + function SDL_HapticEffectSupported(haptic: PSDL_Haptic; effect: PSDL_HapticEffect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticEffectSupported' {$ENDIF} {$ENDIF}; +{$endif} {** * Create a new haptic effect on a specified device. @@ -1056,8 +1156,16 @@ function SDL_HapticEffectSupported(haptic: PSDL_Haptic; effect: PSDL_HapticEffec * \sa SDL_HapticRunEffect * \sa SDL_HapticUpdateEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticNewEffect_func = function(haptic: PSDL_Haptic; effect: PSDL_HapticEffect): cint; cdecl; +Var + SDL_HapticNewEffect : TSDL_HapticNewEffect_func = Nil; +{$else} + function SDL_HapticNewEffect(haptic: PSDL_Haptic; effect: PSDL_HapticEffect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticNewEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Update the properties of an effect. @@ -1080,8 +1188,16 @@ function SDL_HapticNewEffect(haptic: PSDL_Haptic; effect: PSDL_HapticEffect): ci * \sa SDL_HapticNewEffect * \sa SDL_HapticRunEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticUpdateEffect_func = function(haptic: PSDL_Haptic; effect: cint; data: PSDL_HapticEffect): cint; cdecl; +Var + SDL_HapticUpdateEffect : TSDL_HapticUpdateEffect_func = Nil; +{$else} + function SDL_HapticUpdateEffect(haptic: PSDL_Haptic; effect: cint; data: PSDL_HapticEffect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticUpdateEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Run the haptic effect on its associated haptic device. @@ -1105,8 +1221,16 @@ function SDL_HapticUpdateEffect(haptic: PSDL_Haptic; effect: cint; data: PSDL_Ha * \sa SDL_HapticGetEffectStatus * \sa SDL_HapticStopEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticRunEffect_func = function(haptic: PSDL_Haptic; effect: cint; iterations: cuint32): cint; cdecl; +Var + SDL_HapticRunEffect : TSDL_HapticRunEffect_func = Nil; +{$else} + function SDL_HapticRunEffect(haptic: PSDL_Haptic; effect: cint; iterations: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticRunEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Stop the haptic effect on its associated haptic device. @@ -1123,8 +1247,16 @@ function SDL_HapticRunEffect(haptic: PSDL_Haptic; effect: cint; iterations: cuin * \sa SDL_HapticDestroyEffect * \sa SDL_HapticRunEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticStopEffect_func = function(haptic: PSDL_Haptic; effect: cint): cint; cdecl; +Var + SDL_HapticStopEffect : TSDL_HapticStopEffect_func = Nil; +{$else} + function SDL_HapticStopEffect(haptic: PSDL_Haptic; effect: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticStopEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Destroy a haptic effect on the device. @@ -1139,8 +1271,16 @@ function SDL_HapticStopEffect(haptic: PSDL_Haptic; effect: cint): cint; cdecl; * * \sa SDL_HapticNewEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticDestroyEffect_proc = procedure(haptic: PSDL_Haptic; effect: cint); cdecl; +Var + SDL_HapticDestroyEffect : TSDL_HapticDestroyEffect_proc = Nil; +{$else} + procedure SDL_HapticDestroyEffect(haptic: PSDL_Haptic; effect: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticDestroyEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the status of the current effect on the specified haptic device. @@ -1157,8 +1297,16 @@ procedure SDL_HapticDestroyEffect(haptic: PSDL_Haptic; effect: cint); cdecl; * \sa SDL_HapticRunEffect * \sa SDL_HapticStopEffect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticGetEffectStatus_func = function(haptic: PSDL_Haptic; effect: cint): cint; cdecl; +Var + SDL_HapticGetEffectStatus : TSDL_HapticGetEffectStatus_func = Nil; +{$else} + function SDL_HapticGetEffectStatus(haptic: PSDL_Haptic; effect: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticGetEffectStatus' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the global gain of the specified haptic device. @@ -1179,8 +1327,16 @@ function SDL_HapticGetEffectStatus(haptic: PSDL_Haptic; effect: cint): cint; cde * * \sa SDL_HapticQuery *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticSetGain_func = function(haptic: PSDL_Haptic; gain: cint): cint; cdecl; +Var + SDL_HapticSetGain : TSDL_HapticSetGain_func = Nil; +{$else} + function SDL_HapticSetGain(haptic: PSDL_Haptic; gain: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticSetGain' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the global autocenter of the device. @@ -1199,8 +1355,16 @@ function SDL_HapticSetGain(haptic: PSDL_Haptic; gain: cint): cint; cdecl; * * \sa SDL_HapticQuery *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticSetAutocenter_func = function(haptic: PSDL_Haptic; autocenter: cint): cint; cdecl; +Var + SDL_HapticSetAutocenter : TSDL_HapticSetAutocenter_func = Nil; +{$else} + function SDL_HapticSetAutocenter(haptic: PSDL_Haptic; autocenter: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticSetAutocenter' {$ENDIF} {$ENDIF}; +{$endif} {** * Pause a haptic device. @@ -1219,8 +1383,16 @@ function SDL_HapticSetAutocenter(haptic: PSDL_Haptic; autocenter: cint): cint; c * * \sa SDL_HapticUnpause *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticPause_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticPause : TSDL_HapticPause_func = Nil; +{$else} + function SDL_HapticPause(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticPause' {$ENDIF} {$ENDIF}; +{$endif} {** * Unpause a haptic device. @@ -1235,8 +1407,16 @@ function SDL_HapticPause(haptic: PSDL_Haptic): cint; cdecl; * * \sa SDL_HapticPause *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticUnpause_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticUnpause : TSDL_HapticUnpause_func = Nil; +{$else} + function SDL_HapticUnpause(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticUnPause' {$ENDIF} {$ENDIF}; +{$endif} {** * Stop all the currently playing effects on a haptic device. @@ -1247,8 +1427,16 @@ function SDL_HapticUnpause(haptic: PSDL_Haptic): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticStopAll_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticStopAll : TSDL_HapticStopAll_func = Nil; +{$else} + function SDL_HapticStopAll(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticStopAll' {$ENDIF} {$ENDIF}; +{$endif} {** * Check whether rumble is supported on a haptic device. @@ -1264,8 +1452,16 @@ function SDL_HapticStopAll(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticRumblePlay * \sa SDL_HapticRumbleStop *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticRumbleSupported_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticRumbleSupported : TSDL_HapticRumbleSupported_func = Nil; +{$else} + function SDL_HapticRumbleSupported(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticRumbleSupported' {$ENDIF} {$ENDIF}; +{$endif} {** * Initialize a haptic device for simple rumble playback. @@ -1281,8 +1477,16 @@ function SDL_HapticRumbleSupported(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticRumbleStop * \sa SDL_HapticRumbleSupported *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticRumbleInit_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticRumbleInit : TSDL_HapticRumbleInit_func = Nil; +{$else} + function SDL_HapticRumbleInit(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticRumbleInit' {$ENDIF} {$ENDIF}; +{$endif} {** * Run a simple rumble effect on a haptic device. @@ -1299,8 +1503,16 @@ function SDL_HapticRumbleInit(haptic: PSDL_Haptic): cint; cdecl; * \sa SDL_HapticRumbleStop * \sa SDL_HapticRumbleSupported *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticRumblePlay_func = function(haptic: PSDL_Haptic; strength: cfloat; length: cuint32): cint; cdecl; +Var + SDL_HapticRumblePlay : TSDL_HapticRumblePlay_func = Nil; +{$else} + function SDL_HapticRumblePlay(haptic: PSDL_Haptic; strength: cfloat; length: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticRumblePlay' {$ENDIF} {$ENDIF}; +{$endif} {** * Stop the simple rumble on a haptic device. @@ -1315,6 +1527,14 @@ function SDL_HapticRumblePlay(haptic: PSDL_Haptic; strength: cfloat; length: cui * \sa SDL_HapticRumblePlay * \sa SDL_HapticRumbleSupported *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HapticRumbleStop_func = function(haptic: PSDL_Haptic): cint; cdecl; +Var + SDL_HapticRumbleStop : TSDL_HapticRumbleStop_func = Nil; +{$else} + function SDL_HapticRumbleStop(haptic: PSDL_Haptic): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HapticRumbleStop' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlhidapi.inc b/units/sdlhidapi.inc index 570d2c7..79d9107 100644 --- a/units/sdlhidapi.inc +++ b/units/sdlhidapi.inc @@ -104,7 +104,9 @@ type * \since This function is available since SDL 2.0.18. * * \sa SDL_hid_exit - *) + *) {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_hid_init(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_hid_init' {$ENDIF} {$ENDIF}; @@ -424,3 +426,4 @@ function SDL_hid_get_indexed_string(dev: PSDL_hid_device; string_index: cint; st *) procedure SDL_hid_ble_scan(active: TSDL_bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_hid_ble_scan' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlhints.inc b/units/sdlhints.inc index 32d60ca..3f3128b 100644 --- a/units/sdlhints.inc +++ b/units/sdlhints.inc @@ -2415,16 +2415,32 @@ const * * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetHintWithPriority_func = function(const name: PAnsiChar; const value: PAnsiChar; priority: TSDL_HintPriority): TSDL_Bool; cdecl; +Var + SDL_SetHintWithPriority : TSDL_SetHintWithPriority_func = Nil; +{$else} + function SDL_SetHintWithPriority(const name: PAnsiChar; const value: PAnsiChar; priority: TSDL_HintPriority): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetHintWithPriority' {$ENDIF} {$ENDIF}; +{$endif} {/** * \brief Set a hint with normal priority * * \return SDL_TRUE if the hint was set, SDL_FALSE otherwise */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetHint_func = function(const name: PAnsiChar; const value: PAnsiChar): TSDL_Bool; cdecl; +Var + SDL_SetHint : TSDL_SetHint_func = Nil; +{$else} + function SDL_SetHint(const name: PAnsiChar; const value: PAnsiChar): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetHint' {$ENDIF} {$ENDIF}; +{$endif} {** * Reset a hint to the default value. @@ -2438,8 +2454,16 @@ function SDL_SetHint(const name: PAnsiChar; const value: PAnsiChar): TSDL_Bool; * * \since This function is available since SDL 2.24.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ResetHint_func = function(const name: PAnsiChar): TSDL_Bool; cdecl; +Var + SDL_ResetHint : TSDL_ResetHint_func = Nil; +{$else} + function SDL_ResetHint(const name: PAnsiChar): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ResetHint' {$ENDIF} {$ENDIF}; +{$endif} {** * Reset all hints to the default values. @@ -2454,24 +2478,48 @@ function SDL_ResetHint(const name: PAnsiChar): TSDL_Bool; cdecl; * \sa SDL_SetHint * \sa SDL_ResetHint *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ResetHints_proc = procedure(); cdecl; +Var + SDL_ResetHints : TSDL_ResetHints_proc = Nil; +{$else} + procedure SDL_ResetHints(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ResetHints' {$ENDIF} {$ENDIF}; +{$endif} {/** * \brief Get a hint * * \return The string value of a hint variable. */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetHint_func = function(const name: PAnsiChar): PAnsiChar; cdecl; +Var + SDL_GetHint : TSDL_GetHint_func = Nil; +{$else} + function SDL_GetHint(const name: PAnsiChar): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetHint' {$ENDIF} {$ENDIF}; +{$endif} {/** * \brief Get a hint * * \return The boolean value of a hint variable. */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetHintBoolean_func = function(const name: PAnsiChar; default_value: TSDL_Bool): TSDL_Bool; cdecl; +Var + SDL_GetHintBoolean : TSDL_GetHintBoolean_func = Nil; +{$else} + function SDL_GetHintBoolean(const name: PAnsiChar; default_value: TSDL_Bool): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetHintBoolean' {$ENDIF} {$ENDIF}; +{$endif} {/** * \brief Add a function to watch a particular hint @@ -2485,8 +2533,16 @@ type PSDL_HintCallback = ^TSDL_HintCallback; TSDL_HintCallback = procedure(userdata: Pointer; const name: PAnsiChar; const oldValue: PAnsiChar; const newValue: PAnsiChar); cdecl; +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AddHintCallback_proc = procedure(const name: PAnsiChar; callback: TSDL_HintCallback; userdata: Pointer); cdecl; +Var + SDL_AddHintCallback : TSDL_AddHintCallback_proc = Nil; +{$else} + procedure SDL_AddHintCallback(const name: PAnsiChar; callback: TSDL_HintCallback; userdata: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AddHintCallback' {$ENDIF} {$ENDIF}; +{$endif} {/** * \brief Remove a function watching a particular hint @@ -2495,8 +2551,16 @@ procedure SDL_AddHintCallback(const name: PAnsiChar; callback: TSDL_HintCallback * \param callback The function being called when the hint value changes * \param userdata A pointer being passed to the callback function */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DelHintCallback_proc = procedure(const name: PAnsiChar; callback: TSDL_HintCallback; userdata: Pointer); cdecl; +Var + SDL_DelHintCallback : TSDL_DelHintCallback_proc = Nil; +{$else} + procedure SDL_DelHintCallback(const name: PAnsiChar; callback: TSDL_HintCallback; userdata: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DelHintCallback' {$ENDIF} {$ENDIF}; +{$endif} {** * Clear all hints. @@ -2512,5 +2576,13 @@ procedure SDL_DelHintCallback(const name: PAnsiChar; callback: TSDL_HintCallback * * \sa SDL_ResetHints *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ClearHints_proc = procedure(); cdecl; +Var + SDL_ClearHints : TSDL_ClearHints_proc = Nil; +{$else} + procedure SDL_ClearHints(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ClearHints' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdljoystick.inc b/units/sdljoystick.inc index c507b07..1baf9b7 100644 --- a/units/sdljoystick.inc +++ b/units/sdljoystick.inc @@ -104,8 +104,16 @@ const * * \since This function is available since SDL 2.0.7. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockJoysticks_proc = procedure(); cdecl; +Var + SDL_LockJoysticks : TSDL_LockJoysticks_proc = Nil; +{$else} + procedure SDL_LockJoysticks(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockJoysticks' {$ENDIF} {$ENDIF}; +{$endif} {** * Unlocking for multi-threaded access to the joystick API @@ -119,8 +127,16 @@ procedure SDL_LockJoysticks(); cdecl; * * \since This function is available since SDL 2.0.7. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnlockJoysticks_proc = procedure(); cdecl; +Var + SDL_UnlockJoysticks : TSDL_UnlockJoysticks_proc = Nil; +{$else} + procedure SDL_UnlockJoysticks(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnlockJoysticks' {$ENDIF} {$ENDIF}; +{$endif} {** * Count the number of joysticks attached to the system. @@ -134,8 +150,16 @@ procedure SDL_UnlockJoysticks(); cdecl; * \sa SDL_JoystickPath * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_NumJoysticks_func = function(): cint; cdecl; +Var + SDL_NumJoysticks : TSDL_NumJoysticks_func = Nil; +{$else} + function SDL_NumJoysticks(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_NumJoysticks' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the implementation dependent name of a joystick. @@ -152,8 +176,16 @@ function SDL_NumJoysticks(): cint; cdecl; * \sa SDL_JoystickName * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickNameForIndex_func = function(device_index: cint): PAnsiChar; cdecl; +Var + SDL_JoystickNameForIndex : TSDL_JoystickNameForIndex_func = Nil; +{$else} + function SDL_JoystickNameForIndex(device_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickNameForIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the implementation dependent path of a joystick. @@ -170,8 +202,16 @@ function SDL_JoystickNameForIndex(device_index: cint): PAnsiChar; cdecl; * \sa SDL_JoystickPath * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickPathForIndex_func = function(device_index: cint): PAnsiChar; cdecl; +Var + SDL_JoystickPathForIndex : TSDL_JoystickPathForIndex_func = Nil; +{$else} + function SDL_JoystickPathForIndex(device_index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickPathForIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the player index of a joystick, or -1 if it's not available This can be @@ -179,15 +219,31 @@ function SDL_JoystickPathForIndex(device_index: cint): PAnsiChar; cdecl; * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDevicePlayerIndex_func = function(device_index: cint): cint; cdecl; +Var + SDL_JoystickGetDevicePlayerIndex : TSDL_JoystickGetDevicePlayerIndex_func = Nil; +{$else} + function SDL_JoystickGetDevicePlayerIndex(device_index: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDevicePlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Return the GUID for the joystick at this index * This can be called before any joysticks are opened. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceGUID_func = function(device_index: cint): TSDL_JoystickGUID; cdecl; +Var + SDL_JoystickGetDeviceGUID : TSDL_JoystickGetDeviceGUID_func = Nil; +{$else} + function SDL_JoystickGetDeviceGUID(device_index: cint): TSDL_JoystickGUID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceGUID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB vendor ID of a joystick, if available. @@ -202,8 +258,16 @@ function SDL_JoystickGetDeviceGUID(device_index: cint): TSDL_JoystickGUID; cdecl * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceVendor_func = function(device_index: cint): cuint16; cdecl; +Var + SDL_JoystickGetDeviceVendor : TSDL_JoystickGetDeviceVendor_func = Nil; +{$else} + function SDL_JoystickGetDeviceVendor(device_index: cint): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceVendor' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB product ID of a joystick, if available. @@ -218,8 +282,16 @@ function SDL_JoystickGetDeviceVendor(device_index: cint): cuint16; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceProduct_func = function(device_index: cint): cuint16; cdecl; +Var + SDL_JoystickGetDeviceProduct : TSDL_JoystickGetDeviceProduct_func = Nil; +{$else} + function SDL_JoystickGetDeviceProduct(device_index: cint): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceProduct' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the product version of a joystick, if available. @@ -234,8 +306,16 @@ function SDL_JoystickGetDeviceProduct(device_index: cint): cuint16; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceProductVersion_func = function(device_index: cint): cuint16; cdecl; +Var + SDL_JoystickGetDeviceProductVersion : TSDL_JoystickGetDeviceProductVersion_func = Nil; +{$else} + function SDL_JoystickGetDeviceProductVersion(device_index: cint): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceProductVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the type of a joystick, if available. @@ -249,8 +329,16 @@ function SDL_JoystickGetDeviceProductVersion(device_index: cint): cuint16; cdecl * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceType_func = function(device_index: cint): TSDL_JoystickType; cdecl; +Var + SDL_JoystickGetDeviceType : TSDL_JoystickGetDeviceType_func = Nil; +{$else} + function SDL_JoystickGetDeviceType(device_index: cint): TSDL_JoystickType; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceType' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the instance ID of a joystick. @@ -265,8 +353,16 @@ function SDL_JoystickGetDeviceType(device_index: cint): TSDL_JoystickType; cdecl * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetDeviceInstanceID_func = function(device_index: cint): TSDL_JoystickID; cdecl; +Var + SDL_JoystickGetDeviceInstanceID : TSDL_JoystickGetDeviceInstanceID_func = Nil; +{$else} + function SDL_JoystickGetDeviceInstanceID(device_index: cint): TSDL_JoystickID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetDeviceInstanceID' {$ENDIF} {$ENDIF}; +{$endif} {** * Open a joystick for use. @@ -288,8 +384,17 @@ function SDL_JoystickGetDeviceInstanceID(device_index: cint): TSDL_JoystickID; c * \sa SDL_JoystickClose * \sa SDL_JoystickInstanceID *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickOpen_func = function(device_index: cint): PSDL_Joystick; cdecl; + +Var + SDL_JoystickOpen : TSDL_JoystickOpen_func = Nil; +{$else} + function SDL_JoystickOpen(device_index: cint): PSDL_Joystick; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickOpen' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the SDL_Joystick associated with an instance id. @@ -300,8 +405,16 @@ function SDL_JoystickOpen(device_index: cint): PSDL_Joystick; cdecl; * * \since This function is available since SDL 2.0.4. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickFromInstanceID_func = function(instance_id: TSDL_JoystickID): PSDL_Joystick; cdecl; +Var + SDL_JoystickFromInstanceID : TSDL_JoystickFromInstanceID_func = Nil; +{$else} + function SDL_JoystickFromInstanceID(instance_id: TSDL_JoystickID): PSDL_Joystick; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickFromInstanceID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the SDL_Joystick associated with a player index. @@ -312,8 +425,16 @@ function SDL_JoystickFromInstanceID(instance_id: TSDL_JoystickID): PSDL_Joystick * * \since This function is available since SDL 2.0.12. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickFromPlayerIndex_func = function(player_index: cint): PSDL_Joystick; cdecl; +Var + SDL_JoystickFromPlayerIndex : TSDL_JoystickFromPlayerIndex_func = Nil; +{$else} + function SDL_JoystickFromPlayerIndex(player_index: cint): PSDL_Joystick; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickFromPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Attach a new virtual joystick. @@ -322,8 +443,16 @@ function SDL_JoystickFromPlayerIndex(player_index: cint): PSDL_Joystick; cdecl; * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickAttachVirtual_func = function(type_: TSDL_JoystickType; naxes: cint; nbuttons: cint; nhats: cint): cint; cdecl; +Var + SDL_JoystickAttachVirtual : TSDL_JoystickAttachVirtual_func = Nil; +{$else} + function SDL_JoystickAttachVirtual(type_: TSDL_JoystickType; naxes: cint; nbuttons: cint; nhats: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickAttachVirtual' {$ENDIF} {$ENDIF}; +{$endif} type {** @@ -380,8 +509,16 @@ const * * \since This function is available since SDL 2.24.0. */} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickAttachVirtualEx_func = function(const desc: PSDL_VirtualJoystickDesc): cint; cdecl; +Var + SDL_JoystickAttachVirtualEx : TSDL_JoystickAttachVirtualEx_func = Nil; +{$else} + function SDL_JoystickAttachVirtualEx(const desc: PSDL_VirtualJoystickDesc): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickAttachVirtualEx' {$ENDIF} {$ENDIF}; +{$endif} {** * Detach a virtual joystick. @@ -392,8 +529,16 @@ function SDL_JoystickAttachVirtualEx(const desc: PSDL_VirtualJoystickDesc): cint * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickDetachVirtual_func = function(device_index: cint): cint; cdecl; +Var + SDL_JoystickDetachVirtual : TSDL_JoystickDetachVirtual_func = Nil; +{$else} + function SDL_JoystickDetachVirtual(device_index: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickDetachVirtual' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether or not the joystick at a given device index is virtual. @@ -403,8 +548,16 @@ function SDL_JoystickDetachVirtual(device_index: cint): cint; cdecl; * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickIsVirtual_func = function(device_index: cint): TSDL_Bool; cdecl; +Var + SDL_JoystickIsVirtual : TSDL_JoystickIsVirtual_func = Nil; +{$else} + function SDL_JoystickIsVirtual(device_index: cint): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickIsVirtual' {$ENDIF} {$ENDIF}; +{$endif} {** * Set values on an opened, virtual-joystick's axis. @@ -426,8 +579,16 @@ function SDL_JoystickIsVirtual(device_index: cint): TSDL_Bool; cdecl; * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSetVirtualAxis_func = function(joystick: PSDL_Joystick; axis: cint; value: cint16): cint; cdecl; +Var + SDL_JoystickSetVirtualAxis : TSDL_JoystickSetVirtualAxis_func = Nil; +{$else} + function SDL_JoystickSetVirtualAxis(joystick: PSDL_Joystick; axis: cint; value: cint16): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSetVirtualAxis' {$ENDIF} {$ENDIF}; +{$endif} {** * Set values on an opened, virtual-joystick's button. @@ -445,8 +606,16 @@ function SDL_JoystickSetVirtualAxis(joystick: PSDL_Joystick; axis: cint; value: * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSetVirtualButton_func = function(joystick: PSDL_Joystick; button: cint; value: cuint8): cint; cdecl; +Var + SDL_JoystickSetVirtualButton : TSDL_JoystickSetVirtualButton_func = Nil; +{$else} + function SDL_JoystickSetVirtualButton(joystick: PSDL_Joystick; button: cint; value: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSetVirtualButton' {$ENDIF} {$ENDIF}; +{$endif} {** * Set values on an opened, virtual-joystick's hat. @@ -464,8 +633,16 @@ function SDL_JoystickSetVirtualButton(joystick: PSDL_Joystick; button: cint; val * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSetVirtualHat_func = function(joystick: PSDL_Joystick; hat: cint; value: cuint8): cint; cdecl; +Var + SDL_JoystickSetVirtualHat : TSDL_JoystickSetVirtualHat_func = Nil; +{$else} + function SDL_JoystickSetVirtualHat(joystick: PSDL_Joystick; hat: cint; value: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSetVirtualHat' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the implementation dependent name of a joystick. @@ -479,8 +656,16 @@ function SDL_JoystickSetVirtualHat(joystick: PSDL_Joystick; hat: cint; value: cu * \sa SDL_JoystickNameForIndex * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickName_func = function(joystick: PSDL_Joystick): PAnsiChar; cdecl; +Var + SDL_JoystickName : TSDL_JoystickName_func = Nil; +{$else} + function SDL_JoystickName(joystick: PSDL_Joystick): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickName' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the implementation dependent path of a joystick. @@ -493,8 +678,16 @@ function SDL_JoystickName(joystick: PSDL_Joystick): PAnsiChar; cdecl; * * \sa SDL_JoystickPathForIndex *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickPath_func = function(joystick: PSDL_Joystick): PAnsiChar; cdecl; +Var + SDL_JoystickPath : TSDL_JoystickPath_func = Nil; +{$else} + function SDL_JoystickPath(joystick: PSDL_Joystick): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickPath' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the player index of an opened joystick. @@ -507,8 +700,16 @@ function SDL_JoystickPath(joystick: PSDL_Joystick): PAnsiChar; cdecl; * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetPlayerIndex_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickGetPlayerIndex : TSDL_JoystickGetPlayerIndex_func = Nil; +{$else} + function SDL_JoystickGetPlayerIndex(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the player index of an opened joystick. @@ -519,8 +720,16 @@ function SDL_JoystickGetPlayerIndex(joystick: PSDL_Joystick): cint; cdecl; * * \since This function is available since SDL 2.0.12. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSetPlayerIndex_proc = procedure(joystick: PSDL_Joystick; player_index: cint); cdecl; +Var + SDL_JoystickSetPlayerIndex : TSDL_JoystickSetPlayerIndex_proc = Nil; +{$else} + procedure SDL_JoystickSetPlayerIndex(joystick: PSDL_Joystick; player_index: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSetPlayerIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the implementation-dependent GUID for the joystick. @@ -537,8 +746,16 @@ procedure SDL_JoystickSetPlayerIndex(joystick: PSDL_Joystick; player_index: cint * \sa SDL_JoystickGetDeviceGUID * \sa SDL_JoystickGetGUIDString *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetGUID_func = function(joystick: PSDL_Joystick): TSDL_JoystickGUID; cdecl; +Var + SDL_JoystickGetGUID : TSDL_JoystickGetGUID_func = Nil; +{$else} + function SDL_JoystickGetGUID(joystick: PSDL_Joystick): TSDL_JoystickGUID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetGUID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB vendor ID of an opened joystick, if available. @@ -550,8 +767,16 @@ function SDL_JoystickGetGUID(joystick: PSDL_Joystick): TSDL_JoystickGUID; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetVendor_func = function(joystick: PSDL_Joystick): cuint16; cdecl; +Var + SDL_JoystickGetVendor : TSDL_JoystickGetVendor_func = Nil; +{$else} + function SDL_JoystickGetVendor(joystick: PSDL_Joystick): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetVendor' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the USB product ID of an opened joystick, if available. @@ -563,8 +788,16 @@ function SDL_JoystickGetVendor(joystick: PSDL_Joystick): cuint16; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetProduct_func = function(joystick: PSDL_Joystick): cuint16; cdecl; +Var + SDL_JoystickGetProduct : TSDL_JoystickGetProduct_func = Nil; +{$else} + function SDL_JoystickGetProduct(joystick: PSDL_Joystick): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetProduct' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the product version of an opened joystick, if available. @@ -576,8 +809,16 @@ function SDL_JoystickGetProduct(joystick: PSDL_Joystick): cuint16; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetProductVersion_func = function(joystick: PSDL_Joystick): cuint16; cdecl; +Var + SDL_JoystickGetProductVersion : TSDL_JoystickGetProductVersion_func = Nil; +{$else} + function SDL_JoystickGetProductVersion(joystick: PSDL_Joystick): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetProductVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the firmware version of an opened joystick, if available. @@ -590,8 +831,16 @@ function SDL_JoystickGetProductVersion(joystick: PSDL_Joystick): cuint16; cdecl; * * \since This function is available since SDL 2.24.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetFirmwareVersion_func = function(joystick: PSDL_Joystick): cuint16; cdecl; +Var + SDL_JoystickGetFirmwareVersion : TSDL_JoystickGetFirmwareVersion_func = Nil; +{$else} + function SDL_JoystickGetFirmwareVersion(joystick: PSDL_Joystick): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetFirmwareVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the serial number of an opened joystick, if available. @@ -604,8 +853,16 @@ function SDL_JoystickGetFirmwareVersion(joystick: PSDL_Joystick): cuint16; cdecl * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetSerial_func = function(joystick: PSDL_Joystick): PAnsiChar; cdecl; +Var + SDL_JoystickGetSerial : TSDL_JoystickGetSerial_func = Nil; +{$else} + function SDL_JoystickGetSerial(joystick: PSDL_Joystick): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetSerial' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the type of an opened joystick. @@ -615,8 +872,16 @@ function SDL_JoystickGetSerial(joystick: PSDL_Joystick): PAnsiChar; cdecl; * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetType_func = function(joystick: PSDL_Joystick): TSDL_JoystickType; cdecl; +Var + SDL_JoystickGetType : TSDL_JoystickGetType_func = Nil; +{$else} + function SDL_JoystickGetType(joystick: PSDL_Joystick): TSDL_JoystickType; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetType' {$ENDIF} {$ENDIF}; +{$endif} {** * Get an ASCII string representation for a given SDL_JoystickGUID. @@ -633,8 +898,16 @@ function SDL_JoystickGetType(joystick: PSDL_Joystick): TSDL_JoystickType; cdecl; * \sa SDL_JoystickGetGUID * \sa SDL_JoystickGetGUIDFromString *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetGUIDString_proc = procedure(guid: TSDL_JoystickGUID; pszGUID: PAnsiChar; cbGUID: cint); cdecl; +Var + SDL_JoystickGetGUIDString : TSDL_JoystickGetGUIDString_proc = Nil; +{$else} + procedure SDL_JoystickGetGUIDString(guid: TSDL_JoystickGUID; pszGUID: PAnsiChar; cbGUID: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetGUIDString' {$ENDIF} {$ENDIF}; +{$endif} {** * Convert a GUID string into a SDL_JoystickGUID structure. @@ -650,8 +923,16 @@ procedure SDL_JoystickGetGUIDString(guid: TSDL_JoystickGUID; pszGUID: PAnsiChar; * * \sa SDL_JoystickGetGUIDString *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetGUIDFromString_func = function(const pchGUID: PAnsiChar): TSDL_JoystickGUID; cdecl; +Var + SDL_JoystickGetGUIDFromString : TSDL_JoystickGetGUIDFromString_func = Nil; +{$else} + function SDL_JoystickGetGUIDFromString(const pchGUID: PAnsiChar): TSDL_JoystickGUID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetGUIDFromString' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the device information encoded in a SDL_JoystickGUID structure @@ -670,8 +951,16 @@ function SDL_JoystickGetGUIDFromString(const pchGUID: PAnsiChar): TSDL_JoystickG * * \sa SDL_JoystickGetDeviceGUID *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetJoystickGUIDInfo_proc = procedure(guid: TSDL_JoystickGUID; vendor: pcuint16; product: pcuint16; version: pcuint16; crc16: pcuint16); cdecl; +Var + SDL_GetJoystickGUIDInfo : TSDL_GetJoystickGUIDInfo_proc = Nil; +{$else} + procedure SDL_GetJoystickGUIDInfo(guid: TSDL_JoystickGUID; vendor: pcuint16; product: pcuint16; version: pcuint16; crc16: pcuint16); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetJoystickGUIDInfo' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the status of a specified joystick. @@ -685,8 +974,16 @@ procedure SDL_GetJoystickGUIDInfo(guid: TSDL_JoystickGUID; vendor: pcuint16; pro * \sa SDL_JoystickClose * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetAttached_func = function(joystick: PSDL_Joystick): TSDL_Bool; cdecl; +Var + SDL_JoystickGetAttached : TSDL_JoystickGetAttached_func = Nil; +{$else} + function SDL_JoystickGetAttached(joystick: PSDL_Joystick): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetAttached' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the instance ID of an opened joystick. @@ -699,8 +996,16 @@ function SDL_JoystickGetAttached(joystick: PSDL_Joystick): TSDL_Bool; cdecl; * * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickInstanceID_func = function(joystick: PSDL_Joystick): TSDL_JoystickID; cdecl; +Var + SDL_JoystickInstanceID : TSDL_JoystickInstanceID_func = Nil; +{$else} + function SDL_JoystickInstanceID(joystick: PSDL_Joystick): TSDL_JoystickID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickInstanceID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of general axis controls on a joystick. @@ -719,8 +1024,16 @@ function SDL_JoystickInstanceID(joystick: PSDL_Joystick): TSDL_JoystickID; cdecl * \sa SDL_JoystickGetAxis * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickNumAxes_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickNumAxes : TSDL_JoystickNumAxes_func = Nil; +{$else} + function SDL_JoystickNumAxes(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickNumAxes' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of trackballs on a joystick. @@ -738,8 +1051,16 @@ function SDL_JoystickNumAxes(joystick: PSDL_Joystick): cint; cdecl; * * \sa SDL_JoystickGetBall *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickNumBalls_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickNumBalls : TSDL_JoystickNumBalls_func = Nil; +{$else} + function SDL_JoystickNumBalls(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickNumBalls' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of POV hats on a joystick. @@ -753,8 +1074,16 @@ function SDL_JoystickNumBalls(joystick: PSDL_Joystick): cint; cdecl; * \sa SDL_JoystickGetHat * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickNumHats_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickNumHats : TSDL_JoystickNumHats_func = Nil; +{$else} + function SDL_JoystickNumHats(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickNumHats' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of buttons on a joystick. @@ -768,8 +1097,16 @@ function SDL_JoystickNumHats(joystick: PSDL_Joystick): cint; cdecl; * \sa SDL_JoystickGetButton * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickNumButtons_func = function(joystick: PSDL_Joystick): cint; cdecl; +Var + SDL_JoystickNumButtons : TSDL_JoystickNumButtons_func = Nil; +{$else} + function SDL_JoystickNumButtons(joystick: PSDL_Joystick): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickNumButtons' {$ENDIF} {$ENDIF}; +{$endif} {** * Update the current state of the open joysticks. @@ -781,8 +1118,16 @@ function SDL_JoystickNumButtons(joystick: PSDL_Joystick): cint; cdecl; * * \sa SDL_JoystickEventState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickUpdate_proc = procedure(); cdecl; +Var + SDL_JoystickUpdate : TSDL_JoystickUpdate_proc = Nil; +{$else} + procedure SDL_JoystickUpdate(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickUpdate' {$ENDIF} {$ENDIF}; +{$endif} {** * Enable/disable joystick event polling. @@ -807,8 +1152,16 @@ procedure SDL_JoystickUpdate(); cdecl; * * \sa SDL_GameControllerEventState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickEventState_func = function(state: cint): cint; cdecl; +Var + SDL_JoystickEventState : TSDL_JoystickEventState_func = Nil; +{$else} + function SDL_JoystickEventState(state: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickEventState' {$ENDIF} {$ENDIF}; +{$endif} const SDL_JOYSTICK_AXIS_MAX = 32767; @@ -836,8 +1189,16 @@ const * * \sa SDL_JoystickNumAxes *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetAxis_func = function(joystick: PSDL_Joystick; axis: cint): cint16; cdecl; +Var + SDL_JoystickGetAxis : TSDL_JoystickGetAxis_func = Nil; +{$else} + function SDL_JoystickGetAxis(joystick: PSDL_Joystick; axis: cint): cint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetAxis' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the initial state of an axis control on a joystick. @@ -853,8 +1214,16 @@ function SDL_JoystickGetAxis(joystick: PSDL_Joystick; axis: cint): cint16; cdecl * * \since This function is available since SDL 2.0.6. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetAxisInitialState_func = function(joystick: PSDL_Joystick; axis: cint; state: pcint16): TSDL_Bool; cdecl; +Var + SDL_JoystickGetAxisInitialState : TSDL_JoystickGetAxisInitialState_func = Nil; +{$else} + function SDL_JoystickGetAxisInitialState(joystick: PSDL_Joystick; axis: cint; state: pcint16): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetAxisInitialState' {$ENDIF} {$ENDIF}; +{$endif} {** * Hat positions @@ -893,8 +1262,16 @@ const * * \sa SDL_JoystickNumHats *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetHat_func = function(joystick: PSDL_Joystick; hat: cint): cuint8; cdecl; +Var + SDL_JoystickGetHat : TSDL_JoystickGetHat_func = Nil; +{$else} + function SDL_JoystickGetHat(joystick: PSDL_Joystick; hat: cint): cuint8; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetHat' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the ball axis change since the last poll. @@ -915,8 +1292,16 @@ function SDL_JoystickGetHat(joystick: PSDL_Joystick; hat: cint): cuint8; cdecl; * * \sa SDL_JoystickNumBalls *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetBall_func = function(joystick: PSDL_Joystick; ball: cint; dx: pcint; dy: pcint): cint; cdecl; +Var + SDL_JoystickGetBall : TSDL_JoystickGetBall_func = Nil; +{$else} + function SDL_JoystickGetBall(joystick: PSDL_Joystick; ball: cint; dx: pcint; dy: pcint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetBall' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current state of a button on a joystick. @@ -930,8 +1315,16 @@ function SDL_JoystickGetBall(joystick: PSDL_Joystick; ball: cint; dx: pcint; dy: * * \sa SDL_JoystickNumButtons *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickGetButton_func = function(joystick: PSDL_Joystick; button: cint): cuint8; cdecl; +Var + SDL_JoystickGetButton : TSDL_JoystickGetButton_func = Nil; +{$else} + function SDL_JoystickGetButton(joystick: PSDL_Joystick; button: cint): cuint8; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickGetButton' {$ENDIF} {$ENDIF}; +{$endif} {** * Start a rumble effect. @@ -951,8 +1344,16 @@ function SDL_JoystickGetButton(joystick: PSDL_Joystick; button: cint): cuint8; c * * \sa SDL_JoystickHasRumble *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickRumble_func = function(joystick: PSDL_Joystick; low_frequency_rumble: cuint16; high_frequency_rumble: cuint16; duration_ms: cuint32): cint; cdecl; +Var + SDL_JoystickRumble : TSDL_JoystickRumble_func = Nil; +{$else} + function SDL_JoystickRumble(joystick: PSDL_Joystick; low_frequency_rumble: cuint16; high_frequency_rumble: cuint16; duration_ms: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickRumble' {$ENDIF} {$ENDIF}; +{$endif} {** * Start a rumble effect in the joystick's triggers @@ -977,8 +1378,16 @@ function SDL_JoystickRumble(joystick: PSDL_Joystick; low_frequency_rumble: cuint * * \sa SDL_JoystickHasRumbleTriggers *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickRumbleTriggers_func = function(joystick: PSDL_Joystick; left_rumble: cuint16; right_rumble: cuint16; duration_ms: cuint32): cint; cdecl; +Var + SDL_JoystickRumbleTriggers : TSDL_JoystickRumbleTriggers_func = Nil; +{$else} + function SDL_JoystickRumbleTriggers(joystick: PSDL_Joystick; left_rumble: cuint16; right_rumble: cuint16; duration_ms: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickRumbleTriggers' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a joystick has an LED. @@ -991,8 +1400,16 @@ function SDL_JoystickRumbleTriggers(joystick: PSDL_Joystick; left_rumble: cuint1 * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickHasLED_func = function(joystick: PSDL_Joystick): TSDL_Bool; cdecl; +Var + SDL_JoystickHasLED : TSDL_JoystickHasLED_func = Nil; +{$else} + function SDL_JoystickHasLED(joystick: PSDL_Joystick): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickHasLED' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a joystick has rumble support. @@ -1004,8 +1421,16 @@ function SDL_JoystickHasLED(joystick: PSDL_Joystick): TSDL_Bool; cdecl; * * \sa SDL_JoystickRumble *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickHasRumble_func = function(joystick: PSDL_Joystick): TSDL_Bool; cdecl; +Var + SDL_JoystickHasRumble : TSDL_JoystickHasRumble_func = Nil; +{$else} + function SDL_JoystickHasRumble(joystick: PSDL_Joystick): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickHasRumble' {$ENDIF} {$ENDIF}; +{$endif} {** * Query whether a joystick has rumble support on triggers. @@ -1017,8 +1442,16 @@ function SDL_JoystickHasRumble(joystick: PSDL_Joystick): TSDL_Bool; cdecl; * * \sa SDL_JoystickRumbleTriggers *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickHasRumbleTriggers_func = function(joystick: PSDL_Joystick): TSDL_Bool; cdecl; +Var + SDL_JoystickHasRumbleTriggers : TSDL_JoystickHasRumbleTriggers_func = Nil; +{$else} + function SDL_JoystickHasRumbleTriggers(joystick: PSDL_Joystick): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickHasRumbleTriggers' {$ENDIF} {$ENDIF}; +{$endif} {** @@ -1035,8 +1468,16 @@ function SDL_JoystickHasRumbleTriggers(joystick: PSDL_Joystick): TSDL_Bool; cdec * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSetLED_func = function(joystick: PSDL_Joystick; red: cuint8; green: cuint8; blue: cuint8): cint; cdecl; +Var + SDL_JoystickSetLED : TSDL_JoystickSetLED_func = Nil; +{$else} + function SDL_JoystickSetLED(joystick: PSDL_Joystick; red: cuint8; green: cuint8; blue: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSetLED' {$ENDIF} {$ENDIF}; +{$endif} {** * Send a joystick specific effect packet @@ -1048,8 +1489,16 @@ function SDL_JoystickSetLED(joystick: PSDL_Joystick; red: cuint8; green: cuint8; * * \since This function is available since SDL 2.0.16. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickSendEffect_func = function(joystick: PSDL_Joystick; const data: Pointer; size: cint): cint; cdecl; +Var + SDL_JoystickSendEffect : TSDL_JoystickSendEffect_func = Nil; +{$else} + function SDL_JoystickSendEffect(joystick: PSDL_Joystick; const data: Pointer; size: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickSendEffect' {$ENDIF} {$ENDIF}; +{$endif} {** * Close a joystick previously opened with SDL_JoystickOpen(). @@ -1060,8 +1509,16 @@ function SDL_JoystickSendEffect(joystick: PSDL_Joystick; const data: Pointer; si * * \sa SDL_JoystickOpen *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickClose_proc = procedure(joystick: PSDL_Joystick); cdecl; +Var + SDL_JoystickClose : TSDL_JoystickClose_proc = Nil; +{$else} + procedure SDL_JoystickClose(joystick: PSDL_Joystick); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickClose' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the battery level of a joystick as SDL_JoystickPowerLevel. @@ -1072,5 +1529,13 @@ procedure SDL_JoystickClose(joystick: PSDL_Joystick); cdecl; * * \since This function is available since SDL 2.0.4. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_JoystickCurrentPowerLevel_func = function(joystick: PSDL_Joystick): TSDL_JoystickPowerLevel; cdecl; +Var + SDL_JoystickCurrentPowerLevel : TSDL_JoystickCurrentPowerLevel_func = Nil; +{$else} + function SDL_JoystickCurrentPowerLevel(joystick: PSDL_Joystick): TSDL_JoystickPowerLevel; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_JoystickCurrentPowerLevel' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlkeyboard.inc b/units/sdlkeyboard.inc index c126e8a..4ca62e5 100644 --- a/units/sdlkeyboard.inc +++ b/units/sdlkeyboard.inc @@ -38,9 +38,15 @@ type * * \since This function is available since SDL 2.0.0. } -function SDL_GetKeyboardFocus: PSDL_Window; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetKeyboardFocus_func = function : PSDL_Window; cdecl; + Var + SDL_GetKeyboardFocus : TSDL_GetKeyboardFocus_func = Nil; + {$else} + function SDL_GetKeyboardFocus: PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetKeyboardFocus' {$ENDIF} {$ENDIF}; - + {$endif} {* * Get a snapshot of the current state of the keyboard. * @@ -70,8 +76,16 @@ function SDL_GetKeyboardFocus: PSDL_Window; cdecl; * \sa SDL_PumpEvents * \sa SDL_ResetKeyboard } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetKeyboardState_func = function(numkeys: pcint): pcuint8; cdecl; +Var + SDL_GetKeyboardState : TSDL_GetKeyboardState_func = Nil; +{$else} + function SDL_GetKeyboardState(numkeys: pcint): pcuint8; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetKeyboardState' {$ENDIF} {$ENDIF}; +{$endif} {* * Clear the state of the keyboard @@ -82,9 +96,15 @@ function SDL_GetKeyboardState(numkeys: pcint): pcuint8; cdecl; * * \sa SDL_GetKeyboardState } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ResetKeyboard_proc =procedure ; cdecl; +Var + SDL_ResetKeyboard : TSDL_ResetKeyboard_proc = Nil; +{$else} procedure SDL_ResetKeyboard; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ResetKeyboard' {$ENDIF} {$ENDIF}; - +{$endif} {* * Get the current key modifier state for the keyboard. * @@ -96,9 +116,15 @@ procedure SDL_ResetKeyboard; cdecl; * \sa SDL_GetKeyboardState * \sa SDL_SetModState } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetModState_func = function : TSDL_Keymod; cdecl; +Var + SDL_GetModState : TSDL_GetModState_func = Nil; +{$else} function SDL_GetModState: TSDL_Keymod; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetModState' {$ENDIF} {$ENDIF}; - + {$endif} {* * Set the current key modifier state for the keyboard. * @@ -116,8 +142,16 @@ function SDL_GetModState: TSDL_Keymod; cdecl; * * \sa SDL_GetModState } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetModState_proc = procedure(modstate: TSDL_Keymod); cdecl; +Var + SDL_SetModState : TSDL_SetModState_proc = Nil; +{$else} + procedure SDL_SetModState(modstate: TSDL_Keymod); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetModState' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the key code corresponding to the given scancode according to the @@ -133,8 +167,16 @@ procedure SDL_SetModState(modstate: TSDL_Keymod); cdecl; * \sa SDL_GetKeyName * \sa SDL_GetScancodeFromKey } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetKeyFromScancode_func = function(scancode: TSDL_Scancode): TSDL_Keycode; cdecl; +Var + SDL_GetKeyFromScancode : TSDL_GetKeyFromScancode_func = Nil; +{$else} + function SDL_GetKeyFromScancode(scancode: TSDL_Scancode): TSDL_Keycode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetKeyFromScancode' {$ENDIF} {$ENDIF}; +{$endif} {* * Get the scancode corresponding to the given key code according to the @@ -150,8 +192,16 @@ function SDL_GetKeyFromScancode(scancode: TSDL_Scancode): TSDL_Keycode; cdecl; * \sa SDL_GetKeyFromScancode * \sa SDL_GetScancodeName } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetScancodeFromKey_func = function(key: TSDL_Keycode): TSDL_Scancode; cdecl; +Var + SDL_GetScancodeFromKey : TSDL_GetScancodeFromKey_func = Nil; +{$else} + function SDL_GetScancodeFromKey(key: TSDL_Keycode): TSDL_Scancode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetScancodeFromKey' {$ENDIF} {$ENDIF}; +{$endif} {* * Get a human-readable name for a scancode. @@ -176,8 +226,16 @@ function SDL_GetScancodeFromKey(key: TSDL_Keycode): TSDL_Scancode; cdecl; * \sa SDL_GetScancodeFromKey * \sa SDL_GetScancodeFromName } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetScancodeName_func = function(scancode: TSDL_Scancode): PAnsiChar; cdecl; +Var + SDL_GetScancodeName : TSDL_GetScancodeName_func = Nil; +{$else} + function SDL_GetScancodeName(scancode: TSDL_Scancode): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetScancodeName' {$ENDIF} {$ENDIF}; +{$endif} {* * Get a scancode from a human-readable name. @@ -192,8 +250,16 @@ function SDL_GetScancodeName(scancode: TSDL_Scancode): PAnsiChar; cdecl; * \sa SDL_GetScancodeFromKey * \sa SDL_GetScancodeName } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetScancodeFromName_func = function(name: PAnsiChar): TSDL_Scancode; cdecl; +Var + SDL_GetScancodeFromName : TSDL_GetScancodeFromName_func = Nil; +{$else} + function SDL_GetScancodeFromName(name: PAnsiChar): TSDL_Scancode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetScancodeFromName' {$ENDIF} {$ENDIF}; +{$endif} {* * Get a human-readable name for a key. @@ -212,8 +278,16 @@ function SDL_GetScancodeFromName(name: PAnsiChar): TSDL_Scancode; cdecl; * \sa SDL_GetKeyFromScancode * \sa SDL_GetScancodeFromKey } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetKeyName_func = function(key: TSDL_Keycode): PAnsiChar; cdecl; +Var + SDL_GetKeyName : TSDL_GetKeyName_func = Nil; +{$else} + function SDL_GetKeyName(key: TSDL_Keycode): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetKeyName' {$ENDIF} {$ENDIF}; +{$endif} {* * Get a key code from a human-readable name. @@ -228,8 +302,16 @@ function SDL_GetKeyName(key: TSDL_Keycode): PAnsiChar; cdecl; * \sa SDL_GetKeyName * \sa SDL_GetScancodeFromName } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetKeyFromName_func = function(name: PAnsiChar): TSDL_Keycode; cdecl; +Var + SDL_GetKeyFromName : TSDL_GetKeyFromName_func = Nil; +{$else} + function SDL_GetKeyFromName(name: PAnsiChar): TSDL_Keycode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetKeyFromName' {$ENDIF} {$ENDIF}; +{$endif} {* * Start accepting Unicode text input events. @@ -246,9 +328,15 @@ function SDL_GetKeyFromName(name: PAnsiChar): TSDL_Keycode; cdecl; * \sa SDL_SetTextInputRect * \sa SDL_StopTextInput } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_StartTextInput_proc =procedure ; cdecl; +Var + SDL_StartTextInput : TSDL_StartTextInput_proc = Nil; +{$else} procedure SDL_StartTextInput; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_StartTextInput' {$ENDIF} {$ENDIF}; - +{$endif} {* * Check whether or not Unicode text input events are enabled. * @@ -258,9 +346,15 @@ procedure SDL_StartTextInput; cdecl; * * \sa SDL_StartTextInput } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsTextInputActive_func = function : TSDL_bool; cdecl; +Var + SDL_IsTextInputActive : TSDL_IsTextInputActive_func = Nil; +{$else} function SDL_IsTextInputActive: TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IsTextInputActive' {$ENDIF} {$ENDIF}; - +{$endif} {* * Stop receiving any text input events. * @@ -268,9 +362,15 @@ function SDL_IsTextInputActive: TSDL_bool; cdecl; * * \sa SDL_StartTextInput } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_StopTextInput_proc =procedure ; cdecl; +Var + SDL_StopTextInput : TSDL_StopTextInput_proc = Nil; +{$else} procedure SDL_StopTextInput; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_StopTextInput' {$ENDIF} {$ENDIF}; - +{$endif} {* * Dismiss the composition window/IME without disabling the subsystem. * @@ -279,17 +379,29 @@ procedure SDL_StopTextInput; cdecl; * \sa SDL_StartTextInput * \sa SDL_StopTextInput } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ClearComposition_proc = procedure ; cdecl; +Var + SDL_ClearComposition : TSDL_ClearComposition_proc = Nil; +{$else} procedure SDL_ClearComposition; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ClearComposition' {$ENDIF} {$ENDIF}; - +{$endif} {* * Returns if an IME Composite or Candidate window is currently shown. * * \since This function is available since SDL 2.0.22. } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsTextInputShown_func = function : TSDL_bool; cdecl; +Var + SDL_IsTextInputShown : TSDL_IsTextInputShown_func = Nil; +{$else} function SDL_IsTextInputShown: TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IsTextInputShown' {$ENDIF} {$ENDIF}; - +{$endif} {* * Set the rectangle used to type Unicode text inputs. * @@ -308,8 +420,16 @@ function SDL_IsTextInputShown: TSDL_bool; cdecl; * * \sa SDL_StartTextInput } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetTextInputRect_proc = procedure(rect: PSDL_Rect); cdecl; +Var + SDL_SetTextInputRect : TSDL_SetTextInputRect_proc = Nil; +{$else} + procedure SDL_SetTextInputRect(rect: PSDL_Rect); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextInputRect' {$ENDIF} {$ENDIF}; +{$endif} {* * Check whether the platform has screen keyboard support. @@ -322,9 +442,15 @@ procedure SDL_SetTextInputRect(rect: PSDL_Rect); cdecl; * \sa SDL_StartTextInput * \sa SDL_IsScreenKeyboardShown } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasScreenKeyboardSupport_func = function : TSDL_bool; cdecl; +Var + SDL_HasScreenKeyboardSupport : TSDL_HasScreenKeyboardSupport_func = Nil; +{$else} function SDL_HasScreenKeyboardSupport: TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasScreenKeyboardSupport' {$ENDIF} {$ENDIF}; - +{$endif} {* * Check whether the screen keyboard is shown for given window. * @@ -335,6 +461,14 @@ function SDL_HasScreenKeyboardSupport: TSDL_bool; cdecl; * * \sa SDL_HasScreenKeyboardSupport } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsScreenKeyboardShown_func = function(window: PSDL_Window): TSDL_bool; cdecl; +Var + SDL_IsScreenKeyboardShown : TSDL_IsScreenKeyboardShown_func = Nil; +{$else} + function SDL_IsScreenKeyboardShown(window: PSDL_Window): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IsScreenKeyboardShown' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlloadso.inc b/units/sdlloadso.inc index fb5a423..c80fe46 100644 --- a/units/sdlloadso.inc +++ b/units/sdlloadso.inc @@ -31,8 +31,16 @@ * \sa SDL_LoadFunction * \sa SDL_UnloadObject } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadObject_func = function(sofile: PAnsiChar): Pointer; cdecl; +Var + SDL_LoadObject : TSDL_LoadObject_func = Nil; +{$else} + function SDL_LoadObject(sofile: PAnsiChar): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadObject' {$ENDIF} {$ENDIF}; +{$endif} {* * Look up the address of the named function in a shared object. @@ -59,9 +67,15 @@ function SDL_LoadObject(sofile: PAnsiChar): Pointer; cdecl; * \sa SDL_LoadObject * \sa SDL_UnloadObject } + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_LoadFunctions_func = function (handle: Pointer; name: PAnsiChar): Pointer; cdecl; + Var + SDL_LoadFunction : TSDL_LoadFunctions_func = Nil; + {$else} function SDL_LoadFunction(handle: Pointer; name: PAnsiChar): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadFunction' {$ENDIF} {$ENDIF}; - + {$endif} {* * Unload a shared object from memory. * @@ -72,5 +86,13 @@ function SDL_LoadFunction(handle: Pointer; name: PAnsiChar): Pointer; cdecl; * \sa SDL_LoadFunction * \sa SDL_LoadObject } +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnloadObject_proc = procedure(handle: Pointer); cdecl; +Var + SDL_UnloadObject : TSDL_UnloadObject_proc = Nil; +{$else} + procedure SDL_UnloadObject(handle: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnloadObject' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdllocale.inc b/units/sdllocale.inc index 9230152..68007c9 100644 --- a/units/sdllocale.inc +++ b/units/sdllocale.inc @@ -50,5 +50,9 @@ type * \return array of locales, terminated with a locale with a NIL language * field. Will return NIL on error. *} + {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GetPreferredLocales(): PSDL_Locale; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPreferredLocales' {$ENDIF} {$ENDIF}; + {$endif} diff --git a/units/sdllog.inc b/units/sdllog.inc index 23e1bc1..aa60cca 100644 --- a/units/sdllog.inc +++ b/units/sdllog.inc @@ -68,82 +68,186 @@ const {** * \brief Set the priority of all log categories *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogSetAllPriority_proc = procedure(priority: TSDL_LogPriority); cdecl; +Var + SDL_LogSetAllPriority : TSDL_LogSetAllPriority_proc = Nil; +{$else} + procedure SDL_LogSetAllPriority(priority: TSDL_LogPriority); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogSetAllPriority' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Set the priority of a particular log category *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogSetPriority_proc = procedure(category: TSDL_LogCategory; priority: TSDL_LogPriority); cdecl; +Var + SDL_LogSetPriority : TSDL_LogSetPriority_proc = Nil; +{$else} + procedure SDL_LogSetPriority(category: TSDL_LogCategory; priority: TSDL_LogPriority); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogSetPriority' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the priority of a particular log category *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogGetPriority_func = function(category: TSDL_LogCategory): TSDL_LogPriority; cdecl; +Var + SDL_LogGetPriority : TSDL_LogGetPriority_func = Nil; +{$else} + function SDL_LogGetPriority(category: TSDL_LogCategory): TSDL_LogPriority; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogGetPriority' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Reset all priorities to default. * * \note This is called in SDL_Quit(). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogResetPriorities_proc = procedure(); cdecl; +Var + SDL_LogResetPriorities : TSDL_LogResetPriorities_proc = Nil; +{$else} + procedure SDL_LogResetPriorities(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogResetPriorities' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Log_proc = procedure(const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_Log : TSDL_Log_proc = Nil; +{$else} + procedure SDL_Log(const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Log' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_VERBOSE *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogVerbose_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogVerbose : TSDL_LogVerbose_proc = Nil; +{$else} + procedure SDL_LogVerbose(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogVerbose' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_DEBUG *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogDebug_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogDebug : TSDL_LogDebug_proc = Nil; +{$else} + procedure SDL_LogDebug(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogDebug' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_INFO *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogInfo_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogInfo : TSDL_LogInfo_proc = Nil; +{$else} + procedure SDL_LogInfo(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogInfo' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_WARN *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogWarn_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogWarn : TSDL_LogWarn_proc = Nil; +{$else} + procedure SDL_LogWarn(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogWarn' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_ERROR *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogError_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogError : TSDL_LogError_proc = Nil; +{$else} + procedure SDL_LogError(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogError' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with SDL_LOG_PRIORITY_CRITICAL *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogCritical_proc = procedure(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogCritical : TSDL_LogCritical_proc = Nil; +{$else} + procedure SDL_LogCritical(category: TSDL_LogCategory; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogCritical' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with the specified category and priority. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogMessage_proc = procedure(category: TSDL_LogCategory; priority: TSDL_LogPriority; const fmt: PAnsiChar; pars: array of const); cdecl; +Var + SDL_LogMessage : TSDL_LogMessage_proc = Nil; +{$else} + procedure SDL_LogMessage(category: TSDL_LogCategory; priority: TSDL_LogPriority; const fmt: PAnsiChar; pars: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogMessage' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Log a message with the specified category and priority. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LogMessageV_proc = procedure(category: TSDL_LogCategory; priority: TSDL_LogPriority; const fmt: PAnsiChar; ap: array of const); cdecl; +Var + SDL_LogMessageV : TSDL_LogMessageV_proc = Nil; +{$else} + procedure SDL_LogMessageV(category: TSDL_LogCategory; priority: TSDL_LogPriority; const fmt: PAnsiChar; ap: array of const); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogMessageV' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief The prototype for the log output function @@ -160,6 +264,9 @@ type {** * \brief Get the current log output function. *} + {$ifdef SDL_RUNTIME_LOADING} + // TODO: Portieren + {$else} procedure SDL_LogGetOutputFunction(callback: PSDL_LogOutputFunction; userdata: PPointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogGetOutputFunction' {$ENDIF} {$ENDIF}; @@ -169,5 +276,5 @@ procedure SDL_LogGetOutputFunction(callback: PSDL_LogOutputFunction; userdata: P *} procedure SDL_LogSetOutputFunction(callback: TSDL_LogOutputFunction; userdata: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LogSetOutputFunction' {$ENDIF} {$ENDIF}; - + {$ENDIF} {$ENDIF} diff --git a/units/sdlmessagebox.inc b/units/sdlmessagebox.inc index c9926db..e380f3d 100644 --- a/units/sdlmessagebox.inc +++ b/units/sdlmessagebox.inc @@ -104,8 +104,16 @@ type * block execution of that thread until the user clicks a button or * closes the messagebox. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ShowMessageBox_func = function(messageboxdata: PSDL_MessageBoxData; buttonid: pcint): cint; cdecl; +Var + SDL_ShowMessageBox : TSDL_ShowMessageBox_func = Nil; +{$else} + function SDL_ShowMessageBox(messageboxdata: PSDL_MessageBoxData; buttonid: pcint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ShowMessageBox' {$ENDIF} {$ENDIF}; +{$endif} {** * Create a simple modal message box @@ -119,6 +127,14 @@ function SDL_ShowMessageBox(messageboxdata: PSDL_MessageBoxData; buttonid: pcint * * SDL_ShowMessageBox *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ShowSimpleMessageBox_func = function(flags: TSDL_MessageBoxFlags; title: PAnsiChar; _message: PAnsiChar; window: PSDL_Window): cint; cdecl; +Var + SDL_ShowSimpleMessageBox : TSDL_ShowSimpleMessageBox_func = Nil; +{$else} + function SDL_ShowSimpleMessageBox(flags: TSDL_MessageBoxFlags; title: PAnsiChar; _message: PAnsiChar; window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ShowSimpleMessageBox' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlmisc.inc b/units/sdlmisc.inc index a975c07..1726027 100644 --- a/units/sdlmisc.inc +++ b/units/sdlmisc.inc @@ -25,5 +25,9 @@ * \param url A valid URL to open. * \return 0 on success, or -1 on error. *} +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_OpenURL(const url: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_OpenURL' {$ENDIF} {$ENDIF}; + {$endif} diff --git a/units/sdlmouse.inc b/units/sdlmouse.inc index 63ef977..e646cca 100644 --- a/units/sdlmouse.inc +++ b/units/sdlmouse.inc @@ -44,10 +44,12 @@ const * \returns the window with mouse focus. * * \since This function is available since SDL 2.0.0. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GetMouseFocus: PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetMouseFocus' {$ENDIF}{$ENDIF}; - + {$endif} {** * Retrieve the current state of the mouse. * @@ -69,8 +71,16 @@ function SDL_GetMouseFocus: PSDL_Window; cdecl; * \sa SDL_GetRelativeMouseState * \sa SDL_PumpEvents *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetMouseState_func = function(x: pcint; y: pcint): cuint32; cdecl; +Var + SDL_GetMouseState : TSDL_GetMouseState_func = Nil; +{$else} + function SDL_GetMouseState(x: pcint; y: pcint): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetMouseState' {$ENDIF}{$ENDIF}; +{$endif} {** @@ -100,8 +110,16 @@ function SDL_GetMouseState(x: pcint; y: pcint): cuint32; cdecl; * * \sa SDL_CaptureMouse *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetGlobalMouseState_func = function(x, y: pcint32): cuint32; cdecl; +Var + SDL_GetGlobalMouseState : TSDL_GetGlobalMouseState_func = Nil; +{$else} + function SDL_GetGlobalMouseState(x, y: pcint32): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetGlobalMouseState' {$ENDIF}{$ENDIF}; +{$endif} {** * Retrieve the relative state of the mouse. @@ -120,8 +138,16 @@ function SDL_GetGlobalMouseState(x, y: pcint32): cuint32; cdecl; * * \sa SDL_GetMouseState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRelativeMouseState_func = function(x: pcint; y: pcint): cuint32; cdecl; +Var + SDL_GetRelativeMouseState : TSDL_GetRelativeMouseState_func = Nil; +{$else} + function SDL_GetRelativeMouseState(x: pcint; y: pcint): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRelativeMouseState' {$ENDIF}{$ENDIF}; +{$endif} {** * Move the mouse cursor to the given position within the window. @@ -142,8 +168,16 @@ function SDL_GetRelativeMouseState(x: pcint; y: pcint): cuint32; cdecl; * * \sa SDL_WarpMouseGlobal *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WarpMouseInWindow_proc = procedure(window: PSDL_Window; x: cint; y: cint); cdecl; +Var + SDL_WarpMouseInWindow : TSDL_WarpMouseInWindow_proc = Nil; +{$else} + procedure SDL_WarpMouseInWindow(window: PSDL_Window; x: cint; y: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WarpMouseInWindow' {$ENDIF}{$ENDIF}; +{$endif} {** * Move the mouse to the given position in global screen space. @@ -165,8 +199,16 @@ procedure SDL_WarpMouseInWindow(window: PSDL_Window; x: cint; y: cint); cdecl; * * \sa SDL_WarpMouseInWindow *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WarpMouseGlobal_func = function(x, y: cint): cint; cdecl; +Var + SDL_WarpMouseGlobal : TSDL_WarpMouseGlobal_func = Nil; +{$else} + function SDL_WarpMouseGlobal(x, y: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WarpMouseGlobal' {$ENDIF}{$ENDIF}; +{$endif} {** * Set relative mouse mode. @@ -191,8 +233,16 @@ function SDL_WarpMouseGlobal(x, y: cint): cint; cdecl; * * \sa SDL_GetRelativeMouseMode *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetRelativeMouseMode_func = function(enabled: TSDL_Bool): cint; cdecl; +Var + SDL_SetRelativeMouseMode : TSDL_SetRelativeMouseMode_func = Nil; +{$else} + function SDL_SetRelativeMouseMode(enabled: TSDL_Bool): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRelativeMouseMode' {$ENDIF}{$ENDIF}; +{$endif} {** * Capture the mouse and to track input outside an SDL window. @@ -238,8 +288,16 @@ function SDL_SetRelativeMouseMode(enabled: TSDL_Bool): cint; cdecl; * * \sa SDL_GetGlobalMouseState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CaptureMouse_func = function(enabled: TSDL_Bool): cint; cdecl; +Var + SDL_CaptureMouse : TSDL_CaptureMouse_func = Nil; +{$else} + function SDL_CaptureMouse(enabled: TSDL_Bool): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CaptureMouse' {$ENDIF}{$ENDIF}; +{$endif} {** * Query whether relative mouse mode is enabled. @@ -249,10 +307,12 @@ function SDL_SetRelativeMouseMode(enabled: TSDL_Bool): cint; cdecl; * \since This function is available since SDL 2.0.0. * * \sa SDL_SetRelativeMouseMode - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GetRelativeMouseMode: TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRelativeMouseMode' {$ENDIF}{$ENDIF}; - + {$endif} {** * Create a cursor using the specified bitmap data and mask (in MSB format). * @@ -294,12 +354,24 @@ function SDL_GetRelativeMouseMode: TSDL_Bool; cdecl; * \sa SDL_SetCursor * \sa SDL_ShowCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateCursor_func = function( + const data: pcuint8; + const mask: pcuint8; + w: cint; h: cint; + hot_x: cint; hot_y: cint): PSDL_Cursor; cdecl; +Var + SDL_CreateCursor : TSDL_CreateCursor_func = Nil; +{$else} + function SDL_CreateCursor( const data: pcuint8; const mask: pcuint8; w: cint; h: cint; hot_x: cint; hot_y: cint): PSDL_Cursor; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Create a color cursor. @@ -315,11 +387,22 @@ function SDL_CreateCursor( * \sa SDL_CreateCursor * \sa SDL_FreeCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateColorCursor_func = function( + surface: PSDL_Surface; + hot_x: cint; + hot_y: cint): PSDL_Cursor; cdecl; +Var + SDL_CreateColorCursor : TSDL_CreateColorCursor_func = Nil; +{$else} + function SDL_CreateColorCursor( surface: PSDL_Surface; hot_x: cint; hot_y: cint): PSDL_Cursor; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateColorCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Create a system cursor. @@ -332,8 +415,16 @@ function SDL_CreateColorCursor( * * \sa SDL_FreeCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateSystemCursor_func = function(id: TSDL_SystemCursor): PSDL_Cursor; cdecl; +Var + SDL_CreateSystemCursor : TSDL_CreateSystemCursor_func = Nil; +{$else} + function SDL_CreateSystemCursor(id: TSDL_SystemCursor): PSDL_Cursor; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateSystemCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Set the active cursor. @@ -351,8 +442,16 @@ function SDL_CreateSystemCursor(id: TSDL_SystemCursor): PSDL_Cursor; cdecl; * \sa SDL_GetCursor * \sa SDL_ShowCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetCursor_proc = procedure(cursor: PSDL_Cursor); cdecl; +Var + SDL_SetCursor : TSDL_SetCursor_proc = Nil; +{$else} + procedure SDL_SetCursor(cursor: PSDL_Cursor); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Get the active cursor. @@ -365,7 +464,9 @@ procedure SDL_SetCursor(cursor: PSDL_Cursor); cdecl; * \since This function is available since SDL 2.0.0. * * \sa SDL_SetCursor - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_GetCursor: PSDL_Cursor; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCursor' {$ENDIF}{$ENDIF}; @@ -380,7 +481,7 @@ function SDL_GetCursor: PSDL_Cursor; cdecl; *} function SDL_GetDefaultCursor: PSDL_Cursor; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDefaultCursor' {$ENDIF}{$ENDIF}; - + {$endif} {** * Free a previously-created cursor. * @@ -395,8 +496,16 @@ function SDL_GetDefaultCursor: PSDL_Cursor; cdecl; * \sa SDL_CreateCursor * \sa SDL_CreateSystemCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeCursor_proc = procedure(cursor: PSDL_Cursor); cdecl; +Var + SDL_FreeCursor : TSDL_FreeCursor_proc = Nil; +{$else} + procedure SDL_FreeCursor(cursor: PSDL_Cursor); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Toggle whether or not the cursor is shown. @@ -418,8 +527,16 @@ procedure SDL_FreeCursor(cursor: PSDL_Cursor); cdecl; * \sa SDL_CreateCursor * \sa SDL_SetCursor *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ShowCursor_func = function(toggle: cint): cint; cdecl; +Var + SDL_ShowCursor : TSDL_ShowCursor_func = Nil; +{$else} + function SDL_ShowCursor(toggle: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ShowCursor' {$ENDIF}{$ENDIF}; +{$endif} {** * Used as a mask when testing buttons in buttonstate. diff --git a/units/sdlmutex.inc b/units/sdlmutex.inc index 2da3af8..a689418 100644 --- a/units/sdlmutex.inc +++ b/units/sdlmutex.inc @@ -33,9 +33,15 @@ type * * \since This function is available since SDL 2.0.0. *} -function SDL_CreateMutex: PSDL_Mutex; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_CreateMutex_func = function (): PSDL_Mutex; cdecl; + Var + SDL_CreateMutex : TSDL_CreateMutex_func = Nil; + {$else} + function SDL_CreateMutex: PSDL_Mutex; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateMutex' {$ENDIF} {$ENDIF}; - + {$endif} {** * Lock the mutex. * @@ -52,8 +58,16 @@ function SDL_CreateMutex: PSDL_Mutex; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockMutex_func = function(mutex: PSDL_Mutex): cint; cdecl; +Var + SDL_LockMutex : TSDL_LockMutex_func = Nil; +{$else} + function SDL_LockMutex(mutex: PSDL_Mutex): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockMutex' {$ENDIF} {$ENDIF}; +{$endif} { SDL2-for-Pascal: SDL_mutexP macro ignored; no benefit for the Pascal units } //C: #define SDL_mutexP(m) SDL_UnlockMutex(m) @@ -73,8 +87,16 @@ function SDL_LockMutex(mutex: PSDL_Mutex): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_TryLockMutex_func = function(mutex: PSDL_Mutex): cint; cdecl; +Var + SDL_TryLockMutex : TSDL_TryLockMutex_func = Nil; +{$else} + function SDL_TryLockMutex(mutex: PSDL_Mutex): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_TryLockMutex' {$ENDIF} {$ENDIF}; +{$endif} {** * Unlock the mutex. @@ -93,8 +115,16 @@ function SDL_TryLockMutex(mutex: PSDL_Mutex): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnlockMutex_func = function(mutex: PSDL_Mutex): cint; cdecl; +Var + SDL_UnlockMutex : TSDL_UnlockMutex_func = Nil; +{$else} + function SDL_UnlockMutex(mutex: PSDL_Mutex): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnlockMutex' {$ENDIF} {$ENDIF}; +{$endif} { SDL2-for-Pascal: SDL_mutexV macro ignored; no benefit for the Pascal units } //C: #define SDL_mutexV(m) SDL_UnlockMutex(m) @@ -112,8 +142,16 @@ function SDL_UnlockMutex(mutex: PSDL_Mutex): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DestroyMutex_proc = procedure(mutex: PSDL_Mutex); cdecl; +Var + SDL_DestroyMutex : TSDL_DestroyMutex_proc = Nil; +{$else} + procedure SDL_DestroyMutex(mutex: PSDL_Mutex); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyMutex' {$ENDIF} {$ENDIF}; +{$endif} { -- Semaphore functions -- } type @@ -136,8 +174,16 @@ type * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateSemaphore_func = function(initial_value: cuint32): PSDL_sem; cdecl; +Var + SDL_CreateSemaphore : TSDL_CreateSemaphore_func = Nil; +{$else} + function SDL_CreateSemaphore(initial_value: cuint32): PSDL_sem; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateSemaphore' {$ENDIF} {$ENDIF}; +{$endif} {** * Destroy a semaphore. @@ -149,8 +195,16 @@ function SDL_CreateSemaphore(initial_value: cuint32): PSDL_sem; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DestroySemaphore_proc = procedure(sem: PSDL_Sem); cdecl; +Var + SDL_DestroySemaphore : TSDL_DestroySemaphore_proc = Nil; +{$else} + procedure SDL_DestroySemaphore(sem: PSDL_Sem); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroySemaphore' {$ENDIF} {$ENDIF}; +{$endif} {** * Wait until a semaphore has a positive value and then decrements it. @@ -169,8 +223,16 @@ procedure SDL_DestroySemaphore(sem: PSDL_Sem); cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SemWait_func = function(sem: PSDL_Sem): cint; cdecl; +Var + SDL_SemWait : TSDL_SemWait_func = Nil; +{$else} + function SDL_SemWait(sem: PSDL_Sem): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SemWait' {$ENDIF} {$ENDIF}; +{$endif} {** * See if a semaphore has a positive value and decrement it if it does. @@ -187,8 +249,16 @@ function SDL_SemWait(sem: PSDL_Sem): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SemTryWait_func = function(sem: PSDL_Sem): cint; cdecl; +Var + SDL_SemTryWait : TSDL_SemTryWait_func = Nil; +{$else} + function SDL_SemTryWait(sem: PSDL_Sem): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SemTryWait' {$ENDIF} {$ENDIF}; +{$endif} {** * Wait until a semaphore has a positive value and then decrements it. @@ -206,8 +276,16 @@ function SDL_SemTryWait(sem: PSDL_Sem): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SemWaitTimeout_func = function(sem: PSDL_Sem; ms: cuint32): cint; cdecl; +Var + SDL_SemWaitTimeout : TSDL_SemWaitTimeout_func = Nil; +{$else} + function SDL_SemWaitTimeout(sem: PSDL_Sem; ms: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SemWaitTimeout' {$ENDIF} {$ENDIF}; +{$endif} {** * Atomically increment a semaphore's value and wake waiting threads. @@ -218,8 +296,16 @@ function SDL_SemWaitTimeout(sem: PSDL_Sem; ms: cuint32): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SemPost_func = function(sem: PSDL_Sem): cint; cdecl; +Var + SDL_SemPost : TSDL_SemPost_func = Nil; +{$else} + function SDL_SemPost(sem: PSDL_Sem): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SemPost' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current value of a semaphore. @@ -229,8 +315,16 @@ function SDL_SemPost(sem: PSDL_Sem): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SemValue_func = function(sem: PSDL_Sem): cuint32; cdecl; +Var + SDL_SemValue : TSDL_SemValue_func = Nil; +{$else} + function SDL_SemValue(sem: PSDL_Sem): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SemValue' {$ENDIF} {$ENDIF}; +{$endif} { -- Condition variable functions -- } type @@ -276,9 +370,15 @@ type * * \since This function is available since SDL 2.0.0. *} -function SDL_CreateCond: PSDL_Cond; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_CreateCond_func = function (): PSDL_Cond; cdecl; + Var + SDL_CreateCond : TSDL_CreateCond_func = Nil; + {$else} + function SDL_CreateCond: PSDL_Cond; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateCond' {$ENDIF} {$ENDIF}; - + {$endif} {** * Destroy a condition variable. * @@ -286,8 +386,16 @@ function SDL_CreateCond: PSDL_Cond; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DestroyCond_proc = procedure(cond: PSDL_Cond); cdecl; +Var + SDL_DestroyCond : TSDL_DestroyCond_proc = Nil; +{$else} + procedure SDL_DestroyCond(cond: PSDL_Cond); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyCond' {$ENDIF} {$ENDIF}; +{$endif} {** * Restart one of the threads that are waiting on the condition variable. @@ -298,8 +406,16 @@ procedure SDL_DestroyCond(cond: PSDL_Cond); cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CondSignal_func = function(cond: PSDL_Cond): cint; cdecl; +Var + SDL_CondSignal : TSDL_CondSignal_func = Nil; +{$else} + function SDL_CondSignal(cond: PSDL_Cond): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CondSignal' {$ENDIF} {$ENDIF}; +{$endif} {** * Restart all threads that are waiting on the condition variable. @@ -310,8 +426,16 @@ function SDL_CondSignal(cond: PSDL_Cond): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CondBroadcast_func = function(cond: PSDL_Cond): cint; cdecl; +Var + SDL_CondBroadcast : TSDL_CondBroadcast_func = Nil; +{$else} + function SDL_CondBroadcast(cond: PSDL_Cond): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CondBroadcast' {$ENDIF} {$ENDIF}; +{$endif} {** * Wait until a condition variable is signaled. @@ -333,8 +457,16 @@ function SDL_CondBroadcast(cond: PSDL_Cond): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CondWait_func = function(cond: PSDL_Cond; mutex: PSDL_Mutex): cint; cdecl; +Var + SDL_CondWait : TSDL_CondWait_func = Nil; +{$else} + function SDL_CondWait(cond: PSDL_Cond; mutex: PSDL_Mutex): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CondWait' {$ENDIF} {$ENDIF}; +{$endif} {** * Wait until a condition variable is signaled or a certain time has passed. @@ -357,5 +489,13 @@ function SDL_CondWait(cond: PSDL_Cond; mutex: PSDL_Mutex): cint; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CondWaitTimeout_func = function(cond: PSDL_Cond; mutex: PSDL_Mutex; ms: cuint32): cint; cdecl; +Var + SDL_CondWaitTimeout : TSDL_CondWaitTimeout_func = Nil; +{$else} + function SDL_CondWaitTimeout(cond: PSDL_Cond; mutex: PSDL_Mutex; ms: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CondWaitTimeout' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlpixels.inc b/units/sdlpixels.inc index bf3b1f2..8e8fc2a 100644 --- a/units/sdlpixels.inc +++ b/units/sdlpixels.inc @@ -536,8 +536,16 @@ type * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPixelFormatName_func = function(format: cuint32): PAnsiChar; cdecl; +Var + SDL_GetPixelFormatName : TSDL_GetPixelFormatName_func = Nil; +{$else} + function SDL_GetPixelFormatName(format: cuint32): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPixelFormatName' {$ENDIF} {$ENDIF}; +{$endif} {** * Convert one of the enumerated pixel formats to a bpp value and RGBA masks. @@ -555,9 +563,18 @@ function SDL_GetPixelFormatName(format: cuint32): PAnsiChar; cdecl; * * \sa SDL_MasksToPixelFormatEnum *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_PixelFormatEnumToMasks_func = function(format: cuint32; bpp: pcint; + Rmask: pcuint32; Gmask: pcuint32; Bmask: pcuint32; Amask: pcuint32): TSDL_Bool; cdecl; +Var + SDL_PixelFormatEnumToMasks : TSDL_PixelFormatEnumToMasks_func = Nil; +{$else} + function SDL_PixelFormatEnumToMasks(format: cuint32; bpp: pcint; Rmask: pcuint32; Gmask: pcuint32; Bmask: pcuint32; Amask: pcuint32): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_PixelFormatEnumToMasks' {$ENDIF} {$ENDIF}; +{$endif} {** * Convert a bpp value and RGBA masks to an enumerated pixel format. @@ -576,8 +593,16 @@ function SDL_PixelFormatEnumToMasks(format: cuint32; bpp: pcint; * * \sa SDL_PixelFormatEnumToMasks *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MasksToPixelFormatEnum_func = function(bpp: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): cuint32; cdecl; +Var + SDL_MasksToPixelFormatEnum : TSDL_MasksToPixelFormatEnum_func = Nil; +{$else} + function SDL_MasksToPixelFormatEnum(bpp: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MasksToPixelFormatEnum' {$ENDIF} {$ENDIF}; +{$endif} {** * Create an SDL_PixelFormat structure corresponding to a pixel format. @@ -594,8 +619,16 @@ function SDL_MasksToPixelFormatEnum(bpp: cint; Rmask: cuint32; Gmask: cuint32; B * * \sa SDL_FreeFormat *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AllocFormat_func = function(pixel_format: cuint32): PSDL_PixelFormat; cdecl; +Var + SDL_AllocFormat : TSDL_AllocFormat_func = Nil; +{$else} + function SDL_AllocFormat(pixel_format: cuint32): PSDL_PixelFormat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AllocFormat' {$ENDIF} {$ENDIF}; +{$endif} {** * Free an SDL_PixelFormat structure allocated by SDL_AllocFormat(). @@ -606,8 +639,16 @@ function SDL_AllocFormat(pixel_format: cuint32): PSDL_PixelFormat; cdecl; * * \sa SDL_AllocFormat *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeFormat_proc = procedure(format: PSDL_PixelFormat); cdecl; +Var + SDL_FreeFormat : TSDL_FreeFormat_proc = Nil; +{$else} + procedure SDL_FreeFormat(format: PSDL_PixelFormat); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeFormat' {$ENDIF} {$ENDIF}; +{$endif} {** * Create a palette structure with the specified number of color entries. @@ -623,8 +664,16 @@ procedure SDL_FreeFormat(format: PSDL_PixelFormat); cdecl; * * \sa SDL_FreePalette *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AllocPalette_func = function(ncolors: cint): PSDL_Palette; cdecl; +Var + SDL_AllocPalette : TSDL_AllocPalette_func = Nil; +{$else} + function SDL_AllocPalette(ncolors: cint): PSDL_Palette; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AllocPalette' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the palette for a pixel format structure. @@ -639,8 +688,16 @@ function SDL_AllocPalette(ncolors: cint): PSDL_Palette; cdecl; * \sa SDL_AllocPalette * \sa SDL_FreePalette *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetPixelFormatPalette_func = function(format: PSDL_PixelFormat; palette: PSDL_Palette): cint; cdecl; +Var + SDL_SetPixelFormatPalette : TSDL_SetPixelFormatPalette_func = Nil; +{$else} + function SDL_SetPixelFormatPalette(format: PSDL_PixelFormat; palette: PSDL_Palette): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetPixelFormatPalette' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a range of colors in a palette. @@ -657,8 +714,16 @@ function SDL_SetPixelFormatPalette(format: PSDL_PixelFormat; palette: PSDL_Palet * \sa SDL_AllocPalette * \sa SDL_CreateRGBSurface *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetPaletteColors_func = function(palette: PSDL_Palette; const colors: PSDL_Color; firstcolor: cint; ncolors: cint): cint; cdecl; +Var + SDL_SetPaletteColors : TSDL_SetPaletteColors_func = Nil; +{$else} + function SDL_SetPaletteColors(palette: PSDL_Palette; const colors: PSDL_Color; firstcolor: cint; ncolors: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetPaletteColors' {$ENDIF} {$ENDIF}; +{$endif} {** * Free a palette created with SDL_AllocPalette(). @@ -669,8 +734,16 @@ function SDL_SetPaletteColors(palette: PSDL_Palette; const colors: PSDL_Color; f * * \sa SDL_AllocPalette *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreePalette_proc = procedure(palette: PSDL_Palette); cdecl; +Var + SDL_FreePalette : TSDL_FreePalette_proc = Nil; +{$else} + procedure SDL_FreePalette(palette: PSDL_Palette); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreePalette' {$ENDIF} {$ENDIF}; +{$endif} {** * Map an RGB triple to an opaque pixel value for a given pixel format. @@ -702,8 +775,16 @@ procedure SDL_FreePalette(palette: PSDL_Palette); cdecl; * \sa SDL_GetRGBA * \sa SDL_MapRGBA *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MapRGB_func = function(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cuint8): cuint32; cdecl; +Var + SDL_MapRGB : TSDL_MapRGB_func = Nil; +{$else} + function SDL_MapRGB(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cuint8): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MapRGB' {$ENDIF} {$ENDIF}; +{$endif} {** * Map an RGBA quadruple to a pixel value for a given pixel format. @@ -737,8 +818,16 @@ function SDL_MapRGB(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cui * \sa SDL_GetRGBA * \sa SDL_MapRGB *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MapRGBA_func = function(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cuint8; a: cuint8): cuint32; cdecl; +Var + SDL_MapRGBA : TSDL_MapRGBA_func = Nil; +{$else} + function SDL_MapRGBA(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cuint8; a: cuint8): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MapRGBA' {$ENDIF} {$ENDIF}; +{$endif} {** * Get RGB values from a pixel in the specified format. @@ -761,8 +850,16 @@ function SDL_MapRGBA(const format: PSDL_PixelFormat; r: cuint8; g: cuint8; b: cu * \sa SDL_MapRGB * \sa SDL_MapRGBA *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRGB_proc = procedure(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8; g: pcuint8; b: pcuint8); cdecl; +Var + SDL_GetRGB : TSDL_GetRGB_proc = Nil; +{$else} + procedure SDL_GetRGB(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8; g: pcuint8; b: pcuint8); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRGB' {$ENDIF} {$ENDIF}; +{$endif} {** * Get RGBA values from a pixel in the specified format. @@ -789,8 +886,16 @@ procedure SDL_GetRGB(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8; * \sa SDL_MapRGB * \sa SDL_MapRGBA *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRGBA_proc = procedure(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8; g: pcuint8; b: pcuint8; a: pcuint8); cdecl; +Var + SDL_GetRGBA : TSDL_GetRGBA_proc = Nil; +{$else} + procedure SDL_GetRGBA(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8; g: pcuint8; b: pcuint8; a: pcuint8); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRGBA' {$ENDIF} {$ENDIF}; +{$endif} {/** * Calculate a 256 entry gamma ramp for a gamma value. @@ -802,5 +907,13 @@ procedure SDL_GetRGBA(pixel: cuint32; const format: PSDL_PixelFormat; r: pcuint8 * * \sa SDL_SetWindowGammaRamp *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CalculateGammaRamp_proc = procedure(gamma: cfloat; ramp: pcuint16); cdecl; +Var + SDL_CalculateGammaRamp : TSDL_CalculateGammaRamp_proc = Nil; +{$else} + procedure SDL_CalculateGammaRamp(gamma: cfloat; ramp: pcuint16); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CalculateGammaRamp' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlplatform.inc b/units/sdlplatform.inc index 0b5eb62..d3554d2 100644 --- a/units/sdlplatform.inc +++ b/units/sdlplatform.inc @@ -9,5 +9,13 @@ {** * Gets the name of the platform. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPlatform_func = function (): PAnsiChar; cdecl; +Var + SDL_GetPlatform : TSDL_GetPlatform_func = Nil; +{$else} function SDL_GetPlatform: PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPlatform' {$ENDIF} {$ENDIF}; +{$endif} + diff --git a/units/sdlpower.inc b/units/sdlpower.inc index 54d8e6f..9b7da80 100644 --- a/units/sdlpower.inc +++ b/units/sdlpower.inc @@ -31,5 +31,13 @@ type * * \return The state of the battery (if any). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPowerInfo_func = function(secs: pcint; pct: pcint): TSDL_PowerState; cdecl; +Var + SDL_GetPowerInfo : TSDL_GetPowerInfo_func = Nil; +{$else} + function SDL_GetPowerInfo(secs: pcint; pct: pcint): TSDL_PowerState; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPowerInfo' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlrect.inc b/units/sdlrect.inc index fabde39..11be274 100644 --- a/units/sdlrect.inc +++ b/units/sdlrect.inc @@ -80,38 +80,78 @@ function SDL_RectEquals(const a, b: PSDL_Rect): Boolean; inline; * * SDL_TRUE if there is an intersection, SDL_FALSE otherwise. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasIntersection_func = function(const a, b: PSDL_Rect): TSDL_Bool; cdecl; +Var + SDL_HasIntersection : TSDL_HasIntersection_func = Nil; +{$else} + function SDL_HasIntersection(const a, b: PSDL_Rect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasIntersection' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the intersection of two rectangles. * * SDL_TRUE if there is an intersection, SDL_FALSE otherwise. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IntersectRect_func = function(const A, B: PSDL_Rect; result: PSDL_Rect): TSDL_Bool; cdecl; +Var + SDL_IntersectRect : TSDL_IntersectRect_func = Nil; +{$else} + function SDL_IntersectRect(const A, B: PSDL_Rect; result: PSDL_Rect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IntersectRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the union of two rectangles. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnionRect_proc = procedure(const A, B: PSDL_Rect; result: PSDL_Rect); cdecl; +Var + SDL_UnionRect : TSDL_UnionRect_proc = Nil; +{$else} + procedure SDL_UnionRect(const A, B: PSDL_Rect; result: PSDL_Rect); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnionRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate a minimal rectangle enclosing a set of points * * SDL_TRUE if any points were within the clipping rect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_EnclosePoints_func = function(const points: PSDL_Point; count: cint; const clip: PSDL_Rect; result: PSDL_Rect): TSDL_Bool; cdecl; +Var + SDL_EnclosePoints : TSDL_EnclosePoints_func = Nil; +{$else} + function SDL_EnclosePoints(const points: PSDL_Point; count: cint; const clip: PSDL_Rect; result: PSDL_Rect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_EnclosePoints' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the intersection of a rectangle and line segment. * * SDL_TRUE if there is an intersection, SDL_FALSE otherwise. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IntersectRectAndLine_func = function(const rect: PSDL_Rect; X1, Y1, X2, Y2: pcint): TSDL_Bool; cdecl; +Var + SDL_IntersectRectAndLine : TSDL_IntersectRectAndLine_func = Nil; +{$else} + function SDL_IntersectRectAndLine(const rect: PSDL_Rect; X1, Y1, X2, Y2: pcint): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IntersectRectAndLine' {$ENDIF} {$ENDIF}; +{$endif} {** * Returns true if point resides inside a rectangle. @@ -150,8 +190,16 @@ function SDL_FRectEquals(const a, b: PSDL_FRect): Boolean; Inline; * * \sa SDL_IntersectRect *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasIntersectionF_func = function(const a, b: PSDL_FRect): TSDL_Bool; cdecl; +Var + SDL_HasIntersectionF : TSDL_HasIntersectionF_func = Nil; +{$else} + function SDL_HasIntersectionF(const a, b: PSDL_FRect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasIntersectionF' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the intersection of two rectangles with float precision. @@ -168,8 +216,16 @@ function SDL_HasIntersectionF(const a, b: PSDL_FRect): TSDL_Bool; cdecl; * * \sa SDL_HasIntersectionF *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IntersectFRect_func = function(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; +Var + SDL_IntersectFRect : TSDL_IntersectFRect_func = Nil; +{$else} + function SDL_IntersectFRect(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IntersectFRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the union of two rectangles with float precision. @@ -181,8 +237,16 @@ function SDL_IntersectFRect(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bo * * \since This function is available since SDL 2.0.22. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnionFRect_func = function(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; +Var + SDL_UnionFRect : TSDL_UnionFRect_func = Nil; +{$else} + function SDL_UnionFRect(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnionFRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate a minimal rectangle enclosing a set of points with float @@ -202,8 +266,16 @@ function SDL_UnionFRect(const a, b: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; * * \since This function is available since SDL 2.0.22. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_EncloseFPoints_func = function(const points: PSDL_FPoint; count: cint; const clip: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; +Var + SDL_EncloseFPoints : TSDL_EncloseFPoints_func = Nil; +{$else} + function SDL_EncloseFPoints(const points: PSDL_FPoint; count: cint; const clip: PSDL_FRect; result: PSDL_FRect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_EncloseFPoints' {$ENDIF} {$ENDIF}; +{$endif} {** * Calculate the intersection of a rectangle and line segment with float @@ -224,5 +296,13 @@ function SDL_EncloseFPoints(const points: PSDL_FPoint; count: cint; const clip: * * \since This function is available since SDL 2.0.22. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IntersectFRectAndLine_func = function(const rect: PSDL_FRect; X1, Y1, X2, Y2: pcfloat): TSDL_Bool; cdecl; +Var + SDL_IntersectFRectAndLine : TSDL_IntersectFRectAndLine_func = Nil; +{$else} + function SDL_IntersectFRectAndLine(const rect: PSDL_FRect; X1, Y1, X2, Y2: pcfloat): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IntersectFRectAndLine' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlrenderer.inc b/units/sdlrenderer.inc index afc8e20..fdd0690 100644 --- a/units/sdlrenderer.inc +++ b/units/sdlrenderer.inc @@ -117,7 +117,11 @@ type * SDL_GetRenderDriverInfo() * SDL_CreateRenderer() *} -function SDL_GetNumRenderDrivers: cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumRenderDrivers' {$ENDIF} {$ENDIF}; + {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_GetNumRenderDrivers: cint32 cdecl; +external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumRenderDrivers' {$ENDIF} {$ENDIF}; {** * Get information about a specific 2D rendering driver for the current @@ -131,7 +135,8 @@ function SDL_GetNumRenderDrivers: cint32 cdecl; external SDL_LibName {$IFDEF DEL * * SDL_CreateRenderer() *} -function SDL_GetRenderDriverInfo(index: cint32; info: PSDL_RendererInfo): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDriverInfo' {$ENDIF} {$ENDIF}; +function SDL_GetRenderDriverInfo(index: cint32; info: PSDL_RendererInfo): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDriverInfo' {$ENDIF} {$ENDIF}; {** * Create a window and default renderer @@ -144,7 +149,8 @@ function SDL_GetRenderDriverInfo(index: cint32; info: PSDL_RendererInfo): cint32 * * 0 on success, or -1 on error *} -function SDL_CreateWindowAndRenderer(width: cint32; height: cint32; window_flags: cuint32; window: PPSDL_Window; renderer: PPSDL_Renderer): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateWindowAndRenderer' {$ENDIF} {$ENDIF}; +function SDL_CreateWindowAndRenderer(width: cint32; height: cint32; window_flags: cuint32; window: PPSDL_Window; renderer: PPSDL_Renderer): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateWindowAndRenderer' {$ENDIF} {$ENDIF}; {** * Create a 2D rendering context for a window. @@ -160,7 +166,8 @@ function SDL_CreateWindowAndRenderer(width: cint32; height: cint32; window_flags * SDL_GetRendererInfo() * SDL_DestroyRenderer() *} -function SDL_CreateRenderer(window: PSDL_Window; index: cint32; flags: cuint32): PSDL_Renderer cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRenderer' {$ENDIF} {$ENDIF}; +function SDL_CreateRenderer(window: PSDL_Window; index: cint32; flags: cuint32): PSDL_Renderer cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRenderer' {$ENDIF} {$ENDIF}; {** * Create a 2D software rendering context for a surface. @@ -172,12 +179,14 @@ function SDL_CreateRenderer(window: PSDL_Window; index: cint32; flags: cuint32): * SDL_CreateRenderer() * SDL_DestroyRenderer() *} -function SDL_CreateSoftwareRenderer(surface: PSDL_Surface): PSDL_Renderer cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateSoftwareRenderer' {$ENDIF} {$ENDIF}; +function SDL_CreateSoftwareRenderer(surface: PSDL_Surface): PSDL_Renderer cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateSoftwareRenderer' {$ENDIF} {$ENDIF}; {** * Get the renderer associated with a window. *} -function SDL_GetRenderer(window: PSDL_Window): PSDL_Renderer cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderer' {$ENDIF} {$ENDIF}; +function SDL_GetRenderer(window: PSDL_Window): PSDL_Renderer cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderer' {$ENDIF} {$ENDIF}; {** * Get the window associated with a renderer. @@ -188,12 +197,14 @@ function SDL_RenderGetWindow(renderer: PSDL_Renderer): PSDL_Window; cdecl; {** * Get information about a rendering context. *} -function SDL_GetRendererInfo(renderer: PSDL_Renderer; info: PSDL_RendererInfo): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRendererInfo' {$ENDIF} {$ENDIF}; +function SDL_GetRendererInfo(renderer: PSDL_Renderer; info: PSDL_RendererInfo): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRendererInfo' {$ENDIF} {$ENDIF}; {** * Get the output size of a rendering context. *} -function SDL_GetRendererOutputSize(renderer: PSDL_Renderer; w: pcint; h: pcint): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRendererOutputSize' {$ENDIF} {$ENDIF}; +function SDL_GetRendererOutputSize(renderer: PSDL_Renderer; w: pcint; h: pcint): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRendererOutputSize' {$ENDIF} {$ENDIF}; {** * Create a texture for a rendering context. @@ -212,7 +223,8 @@ function SDL_GetRendererOutputSize(renderer: PSDL_Renderer; w: pcint; h: pcint): * SDL_UpdateTexture() * SDL_DestroyTexture() *} -function SDL_CreateTexture(renderer: PSDL_Renderer; format: cuint32; access: cint32; w: cint32; h: cint32): PSDL_Texture cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateTexture' {$ENDIF} {$ENDIF}; +function SDL_CreateTexture(renderer: PSDL_Renderer; format: cuint32; access: cint32; w: cint32; h: cint32): PSDL_Texture cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateTexture' {$ENDIF} {$ENDIF}; {** * Create a texture from an existing surface. @@ -227,7 +239,8 @@ function SDL_CreateTexture(renderer: PSDL_Renderer; format: cuint32; access: cin * SDL_QueryTexture() * SDL_DestroyTexture() *} -function SDL_CreateTextureFromSurface(renderer: PSDL_Renderer; surface: PSDL_Surface): PSDL_Texture cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateTextureFromSurface' {$ENDIF} {$ENDIF}; +function SDL_CreateTextureFromSurface(renderer: PSDL_Renderer; surface: PSDL_Surface): PSDL_Texture cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateTextureFromSurface' {$ENDIF} {$ENDIF}; {** * Query the attributes of a texture @@ -242,7 +255,8 @@ function SDL_CreateTextureFromSurface(renderer: PSDL_Renderer; surface: PSDL_Sur * * 0 on success, or -1 if the texture is not valid. *} -function SDL_QueryTexture(texture: PSDL_Texture; format: pcuint32; access: pcint; w: pcint; h: pcint): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_QueryTexture' {$ENDIF} {$ENDIF}; +function SDL_QueryTexture(texture: PSDL_Texture; format: pcuint32; access: pcint; w: pcint; h: pcint): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_QueryTexture' {$ENDIF} {$ENDIF}; {** * Set an additional color value used in render copy operations. @@ -257,7 +271,8 @@ function SDL_QueryTexture(texture: PSDL_Texture; format: pcuint32; access: pcint * * SDL_GetTextureColorMod() *} -function SDL_SetTextureColorMod(texture: PSDL_Texture; r: cuint8; g: cuint8; b: cuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureColorMod' {$ENDIF} {$ENDIF}; +function SDL_SetTextureColorMod(texture: PSDL_Texture; r: cuint8; g: cuint8; b: cuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureColorMod' {$ENDIF} {$ENDIF}; {** * Get the additional color value used in render copy operations. @@ -271,7 +286,8 @@ function SDL_SetTextureColorMod(texture: PSDL_Texture; r: cuint8; g: cuint8; b: * * SDL_SetTextureColorMod() *} -function SDL_GetTextureColorMod(texture: PSDL_Texture; r: pcuint8; g: pcuint8; b: pcuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureColorMod' {$ENDIF} {$ENDIF}; +function SDL_GetTextureColorMod(texture: PSDL_Texture; r: pcuint8; g: pcuint8; b: pcuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureColorMod' {$ENDIF} {$ENDIF}; {** * Set an additional alpha value used in render copy operations. @@ -284,7 +300,8 @@ function SDL_GetTextureColorMod(texture: PSDL_Texture; r: pcuint8; g: pcuint8; b * * SDL_GetTextureAlphaMod() *} -function SDL_SetTextureAlphaMod(texture: PSDL_Texture; alpha: cuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureAlphaMod' {$ENDIF} {$ENDIF}; +function SDL_SetTextureAlphaMod(texture: PSDL_Texture; alpha: cuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureAlphaMod' {$ENDIF} {$ENDIF}; {** * Get the additional alpha value used in render copy operations. @@ -296,7 +313,8 @@ function SDL_SetTextureAlphaMod(texture: PSDL_Texture; alpha: cuint8): cint32 cd * * SDL_SetTextureAlphaMod() *} -function SDL_GetTextureAlphaMod(texture: PSDL_Texture; alpha: pcuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureAlphaMod' {$ENDIF} {$ENDIF}; +function SDL_GetTextureAlphaMod(texture: PSDL_Texture; alpha: pcuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureAlphaMod' {$ENDIF} {$ENDIF}; {** * Set the blend mode used for texture copy operations. @@ -312,7 +330,8 @@ function SDL_GetTextureAlphaMod(texture: PSDL_Texture; alpha: pcuint8): cint32 c * * SDL_GetTextureBlendMode() *} -function SDL_SetTextureBlendMode(texture: PSDL_Texture; blendMode: TSDL_BlendMode): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureBlendMode' {$ENDIF} {$ENDIF}; +function SDL_SetTextureBlendMode(texture: PSDL_Texture; blendMode: TSDL_BlendMode): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetTextureBlendMode' {$ENDIF} {$ENDIF}; {** * Get the blend mode used for texture copy operations. @@ -324,7 +343,8 @@ function SDL_SetTextureBlendMode(texture: PSDL_Texture; blendMode: TSDL_BlendMod * * SDL_SetTextureBlendMode() *} -function SDL_GetTextureBlendMode(texture: PSDL_Texture; blendMode: PSDL_BlendMode): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureBlendMode' {$ENDIF} {$ENDIF}; +function SDL_GetTextureBlendMode(texture: PSDL_Texture; blendMode: PSDL_BlendMode): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTextureBlendMode' {$ENDIF} {$ENDIF}; {** * Set the scale mode used for texture scale operations. @@ -364,8 +384,9 @@ function SDL_GetTextureUserData(texture: PSDL_Texture): Pointer; cdecl; * * This is a fairly slow function. *} -function SDL_UpdateTexture(texture: PSDL_Texture; rect: PSDL_Rect; pixels: Pointer; pitch: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateTexture' {$ENDIF} {$ENDIF}; - +function SDL_UpdateTexture(texture: PSDL_Texture; rect: PSDL_Rect; pixels: Pointer; pitch: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateTexture' {$ENDIF} {$ENDIF}; + {$endif} {** * Lock a portion of the texture for write-only pixel access. * @@ -381,8 +402,16 @@ function SDL_UpdateTexture(texture: PSDL_Texture; rect: PSDL_Rect; pixels: Point * * SDL_UnlockTexture() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockTexture_func = function(texture: PSDL_Texture; const rect: PSDL_Rect; pixels: PPointer; pitch: pcint): cint; cdecl; +Var + SDL_LockTexture : TSDL_LockTexture_func = Nil; +{$else} + function SDL_LockTexture(texture: PSDL_Texture; const rect: PSDL_Rect; pixels: PPointer; pitch: pcint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockTexture' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Lock a portion of the texture for write-only pixel access. @@ -399,15 +428,27 @@ function SDL_LockTexture(texture: PSDL_Texture; const rect: PSDL_Rect; pixels: P * * \sa SDL_UnlockTexture() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockTextureToSurface_func = function(texture: PSDL_Texture; const rect: PSDL_Rect; surface: PPSDL_Surface): cint; cdecl; +Var + SDL_LockTextureToSurface : TSDL_LockTextureToSurface_func = Nil; +{$else} + function SDL_LockTextureToSurface(texture: PSDL_Texture; const rect: PSDL_Rect; surface: PPSDL_Surface): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockTextureToSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Unlock a texture, uploading the changes to video memory, if needed. * * SDL_LockTexture() *} -procedure SDL_UnlockTexture(texture: PSDL_Texture) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockTexture' {$ENDIF} {$ENDIF}; +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +procedure SDL_UnlockTexture(texture: PSDL_Texture) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockTexture' {$ENDIF} {$ENDIF}; {** * Determines whether a window supports the use of render targets @@ -416,7 +457,8 @@ procedure SDL_UnlockTexture(texture: PSDL_Texture) cdecl; external SDL_LibName { * * SDL_TRUE if supported, SDL_FALSE if not. *} -function SDL_RenderTargetSupported(renderer: PSDL_Renderer): Boolean cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderTargetSupported' {$ENDIF} {$ENDIF}; +function SDL_RenderTargetSupported(renderer: PSDL_Renderer): Boolean cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderTargetSupported' {$ENDIF} {$ENDIF}; {** * Set a texture as the current rendering target. @@ -428,7 +470,8 @@ function SDL_RenderTargetSupported(renderer: PSDL_Renderer): Boolean cdecl; exte * * SDL_GetRenderTarget() *} -function SDL_SetRenderTarget(renderer: PSDL_Renderer; texture: PSDL_Texture): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderTarget' {$ENDIF} {$ENDIF}; +function SDL_SetRenderTarget(renderer: PSDL_Renderer; texture: PSDL_Texture): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderTarget' {$ENDIF} {$ENDIF}; {** * Get the current render target or NULL for the default render target. @@ -437,7 +480,8 @@ function SDL_SetRenderTarget(renderer: PSDL_Renderer; texture: PSDL_Texture): ci * * SDL_SetRenderTarget() *} -function SDL_GetRenderTarget(renderer: PSDL_Renderer): PSDL_Texture cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderTarget' {$ENDIF} {$ENDIF}; +function SDL_GetRenderTarget(renderer: PSDL_Renderer): PSDL_Texture cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderTarget' {$ENDIF} {$ENDIF}; {** * Set device independent resolution for rendering @@ -462,7 +506,8 @@ function SDL_GetRenderTarget(renderer: PSDL_Renderer): PSDL_Texture cdecl; exter * SDL_RenderSetScale() * SDL_RenderSetViewport() *} -function SDL_RenderSetLogicalSize(renderer: PSDL_Renderer; w: cint32; h: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetLogicalSize' {$ENDIF} {$ENDIF}; +function SDL_RenderSetLogicalSize(renderer: PSDL_Renderer; w: cint32; h: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetLogicalSize' {$ENDIF} {$ENDIF}; {** * Get device independent resolution for rendering @@ -473,7 +518,8 @@ function SDL_RenderSetLogicalSize(renderer: PSDL_Renderer; w: cint32; h: cint32) * * SDL_RenderSetLogicalSize() *} -procedure SDL_RenderGetLogicalSize(renderer: PSDL_Renderer; w: pcint; h: pcint) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetLogicalSize' {$ENDIF} {$ENDIF}; +procedure SDL_RenderGetLogicalSize(renderer: PSDL_Renderer; w: pcint; h: pcint) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetLogicalSize' {$ENDIF} {$ENDIF}; {** * \brief Set whether to force integer scales for resolution-independent rendering @@ -487,7 +533,8 @@ procedure SDL_RenderGetLogicalSize(renderer: PSDL_Renderer; w: pcint; h: pcint) * * \sa SDL_RenderSetLogicalSize() *} -function SDL_RenderSetIntegerScale(renderer: PSDL_Renderer; enable : TSDL_bool): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetIntegerScale' {$ENDIF} {$ENDIF}; +function SDL_RenderSetIntegerScale(renderer: PSDL_Renderer; enable : TSDL_bool): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetIntegerScale' {$ENDIF} {$ENDIF}; {** * \brief Get whether integer scales are forced for resolution-independent rendering @@ -496,7 +543,8 @@ function SDL_RenderSetIntegerScale(renderer: PSDL_Renderer; enable : TSDL_bool): * * \sa SDL_RenderSetIntegerScale() *} -function SDL_RenderGetIntegerScale(renderer: PSDL_Renderer): TSDL_bool cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetIntegerScale' {$ENDIF} {$ENDIF}; +function SDL_RenderGetIntegerScale(renderer: PSDL_Renderer): TSDL_bool cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetIntegerScale' {$ENDIF} {$ENDIF}; {** * Set the drawing area for rendering on the current target. @@ -513,14 +561,16 @@ function SDL_RenderGetIntegerScale(renderer: PSDL_Renderer): TSDL_bool cdecl; ex * SDL_RenderGetViewport() * SDL_RenderSetLogicalSize() *} -function SDL_RenderSetViewport(renderer: PSDL_Renderer; const rect: PSDL_Rect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetViewport' {$ENDIF} {$ENDIF}; +function SDL_RenderSetViewport(renderer: PSDL_Renderer; const rect: PSDL_Rect): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetViewport' {$ENDIF} {$ENDIF}; {** * Get the drawing area for the current target. * * SDL_RenderSetViewport() *} -procedure SDL_RenderGetViewport(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetViewport' {$ENDIF} {$ENDIF}; +procedure SDL_RenderGetViewport(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetViewport' {$ENDIF} {$ENDIF}; {** * Set the clip rectangle for the current target. @@ -533,7 +583,8 @@ procedure SDL_RenderGetViewport(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; * * SDL_RenderGetClipRect() *} -function SDL_RenderSetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetClipRect' {$ENDIF} {$ENDIF}; +function SDL_RenderSetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetClipRect' {$ENDIF} {$ENDIF}; {** * Get the clip rectangle for the current target. @@ -544,8 +595,9 @@ function SDL_RenderSetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 * * SDL_RenderSetClipRect() *} -procedure SDL_RenderGetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetClipRect' {$ENDIF} {$ENDIF}; - +procedure SDL_RenderGetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetClipRect' {$ENDIF} {$ENDIF}; + {$endif} {** * \brief Get whether clipping is enabled on the given renderer. * @@ -553,8 +605,16 @@ procedure SDL_RenderGetClipRect(renderer: PSDL_Renderer; rect: PSDL_Rect) cdecl; * * \sa SDL_RenderGetClipRect() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderIsClipEnabled_func = function(renderer: PSDL_Renderer): TSDL_Bool; cdecl; +Var + SDL_RenderIsClipEnabled : TSDL_RenderIsClipEnabled_func = Nil; +{$else} + function SDL_RenderIsClipEnabled(renderer: PSDL_Renderer): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderIsClipEnabled' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the drawing scale for rendering on the current target. @@ -574,7 +634,11 @@ function SDL_RenderIsClipEnabled(renderer: PSDL_Renderer): TSDL_Bool; cdecl; * SDL_RenderGetScale() * SDL_RenderSetLogicalSize() *} -function SDL_RenderSetScale(renderer: PSDL_Renderer; scaleX: cfloat; scaleY: cfloat): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetScale' {$ENDIF} {$ENDIF}; +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderSetScale(renderer: PSDL_Renderer; scaleX: cfloat; scaleY: cfloat): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetScale' {$ENDIF} {$ENDIF}; {** * Get the drawing scale for the current target. @@ -585,7 +649,8 @@ function SDL_RenderSetScale(renderer: PSDL_Renderer; scaleX: cfloat; scaleY: cfl * * SDL_RenderSetScale() *} -procedure SDL_RenderGetScale(renderer: PSDL_Renderer; scaleX: pcfloat; scaleY: pcfloat) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetScale' {$ENDIF} {$ENDIF}; +procedure SDL_RenderGetScale(renderer: PSDL_Renderer; scaleX: pcfloat; scaleY: pcfloat) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetScale' {$ENDIF} {$ENDIF}; {** * Get logical coordinates of point in renderer when given real coordinates of @@ -615,7 +680,8 @@ procedure SDL_RenderLogicalToWindow(renderer: PSDL_Renderer; logicalX, logicalY: * * 0 on success, or -1 on error *} -function SDL_SetRenderDrawColor(renderer: PSDL_Renderer; r: cuint8; g: cuint8; b: cuint8; a: cuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderDrawColor' {$ENDIF} {$ENDIF}; +function SDL_SetRenderDrawColor(renderer: PSDL_Renderer; r: cuint8; g: cuint8; b: cuint8; a: cuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderDrawColor' {$ENDIF} {$ENDIF}; {** * Get the color used for drawing operations (Rect, Line and Clear). @@ -629,7 +695,8 @@ function SDL_SetRenderDrawColor(renderer: PSDL_Renderer; r: cuint8; g: cuint8; b * * 0 on success, or -1 on error *} -function SDL_GetRenderDrawColor(renderer: PSDL_Renderer; r: pcuint8; g: pcuint8; b: pcuint8; a: pcuint8): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDrawColor' {$ENDIF} {$ENDIF}; +function SDL_GetRenderDrawColor(renderer: PSDL_Renderer; r: pcuint8; g: pcuint8; b: pcuint8; a: pcuint8): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDrawColor' {$ENDIF} {$ENDIF}; {** * Set the blend mode used for drawing operations (Fill and Line). @@ -644,7 +711,8 @@ function SDL_GetRenderDrawColor(renderer: PSDL_Renderer; r: pcuint8; g: pcuint8; * * SDL_GetRenderDrawBlendMode() *} -function SDL_SetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: TSDL_BlendMode): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderDrawBlendMode' {$ENDIF} {$ENDIF}; +function SDL_SetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: TSDL_BlendMode): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetRenderDrawBlendMode' {$ENDIF} {$ENDIF}; {** * Get the blend mode used for drawing operations. @@ -656,7 +724,8 @@ function SDL_SetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: TSDL_Ble * * SDL_SetRenderDrawBlendMode() *} -function SDL_GetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: PSDL_BlendMode): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDrawBlendMode' {$ENDIF} {$ENDIF}; +function SDL_GetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: PSDL_BlendMode): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRenderDrawBlendMode' {$ENDIF} {$ENDIF}; {** * Clear the current rendering target with the drawing color @@ -665,7 +734,8 @@ function SDL_GetRenderDrawBlendMode(renderer: PSDL_Renderer; blendMode: PSDL_Ble * * 0 on success, or -1 on error *} -function SDL_RenderClear(renderer: PSDL_Renderer): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderClear' {$ENDIF} {$ENDIF}; +function SDL_RenderClear(renderer: PSDL_Renderer): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderClear' {$ENDIF} {$ENDIF}; {** * Draw a point on the current rendering target. @@ -676,8 +746,9 @@ function SDL_RenderClear(renderer: PSDL_Renderer): cint32 cdecl; external SDL_Li * * 0 on success, or -1 on error *} -function SDL_RenderDrawPoint(renderer: PSDL_Renderer; x: cint32; y: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPoint' {$ENDIF} {$ENDIF}; - +function SDL_RenderDrawPoint(renderer: PSDL_Renderer; x: cint32; y: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPoint' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw a point on the current rendering target. * @@ -687,8 +758,16 @@ function SDL_RenderDrawPoint(renderer: PSDL_Renderer; x: cint32; y: cint32): cin * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawPointF_func = function(renderer: PSDL_Renderer; x, y: single): cint32 cdecl; +Var + SDL_RenderDrawPointF : TSDL_RenderDrawPointF_func = Nil; +{$else} + function SDL_RenderDrawPointF(renderer: PSDL_Renderer; x, y: single): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPointF' {$ENDIF} {$ENDIF}; +{$endif} {** * Draw multiple points on the current rendering target. @@ -699,8 +778,12 @@ function SDL_RenderDrawPointF(renderer: PSDL_Renderer; x, y: single): cint32 cde * * 0 on success, or -1 on error *} -function SDL_RenderDrawPoints(renderer: PSDL_Renderer; points: PSDL_Point; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPoints' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderDrawPoints(renderer: PSDL_Renderer; points: PSDL_Point; count: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPoints' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw multiple points on the current rendering target. * @@ -710,8 +793,16 @@ function SDL_RenderDrawPoints(renderer: PSDL_Renderer; points: PSDL_Point; count * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawPointsF_func = function(renderer: PSDL_Renderer; points: PSDL_FPoint; count: cint32): cint32 cdecl; +Var + SDL_RenderDrawPointsF : TSDL_RenderDrawPointsF_func = Nil; +{$else} + function SDL_RenderDrawPointsF(renderer: PSDL_Renderer; points: PSDL_FPoint; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawPointsF' {$ENDIF} {$ENDIF}; +{$endif} {** * Draw a line on the current rendering target. @@ -724,8 +815,12 @@ function SDL_RenderDrawPointsF(renderer: PSDL_Renderer; points: PSDL_FPoint; cou * * 0 on success, or -1 on error *} -function SDL_RenderDrawLine(renderer: PSDL_Renderer; x1: cint32; y1: cint32; x2: cint32; y2: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLine' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderDrawLine(renderer: PSDL_Renderer; x1: cint32; y1: cint32; x2: cint32; y2: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLine' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw a line on the current rendering target. * @@ -737,8 +832,16 @@ function SDL_RenderDrawLine(renderer: PSDL_Renderer; x1: cint32; y1: cint32; x2: * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawLineF_func = function(renderer: PSDL_Renderer; x1, y1, x2, y2: single): cint32 cdecl; +Var + SDL_RenderDrawLineF : TSDL_RenderDrawLineF_func = Nil; +{$else} + function SDL_RenderDrawLineF(renderer: PSDL_Renderer; x1, y1, x2, y2: single): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLineF' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Draw a series of connected lines on the current rendering target. @@ -749,8 +852,12 @@ function SDL_RenderDrawLineF(renderer: PSDL_Renderer; x1, y1, x2, y2: single): c * * \return 0 on success, or -1 on error *} -function SDL_RenderDrawLines(renderer: PSDL_Renderer; points: PSDL_Point; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLines' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderDrawLines(renderer: PSDL_Renderer; points: PSDL_Point; count: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLines' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw a series of connected lines on the current rendering target. * @@ -760,8 +867,16 @@ function SDL_RenderDrawLines(renderer: PSDL_Renderer; points: PSDL_Point; count: * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawLinesF_func = function(renderer: PSDL_Renderer; points: PSDL_FPoint; count: cint32): cint32 cdecl; +Var + SDL_RenderDrawLinesF : TSDL_RenderDrawLinesF_func = Nil; +{$else} + function SDL_RenderDrawLinesF(renderer: PSDL_Renderer; points: PSDL_FPoint; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawLinesF' {$ENDIF} {$ENDIF}; +{$endif} {** * Draw a rectangle on the current rendering target. @@ -771,8 +886,12 @@ function SDL_RenderDrawLinesF(renderer: PSDL_Renderer; points: PSDL_FPoint; coun * * 0 on success, or -1 on error *} -function SDL_RenderDrawRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRect' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderDrawRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRect' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw a rectangle on the current rendering target. * @@ -781,8 +900,16 @@ function SDL_RenderDrawRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cd * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawRectF_func = function(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 cdecl; +Var + SDL_RenderDrawRectF : TSDL_RenderDrawRectF_func = Nil; +{$else} + function SDL_RenderDrawRectF(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRectF' {$ENDIF} {$ENDIF}; +{$endif} {** * Draw some number of rectangles on the current rendering target. @@ -793,8 +920,12 @@ function SDL_RenderDrawRectF(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 * * 0 on success, or -1 on error *} -function SDL_RenderDrawRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRects' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderDrawRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRects' {$ENDIF} {$ENDIF}; + {$endif} {** * Draw some number of rectangles on the current rendering target. * @@ -804,8 +935,16 @@ function SDL_RenderDrawRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: c * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderDrawRectsF_func = function(renderer: PSDL_Renderer; rects: PSDL_FRect; count: cint32): cint32 cdecl; +Var + SDL_RenderDrawRectsF : TSDL_RenderDrawRectsF_func = Nil; +{$else} + function SDL_RenderDrawRectsF(renderer: PSDL_Renderer; rects: PSDL_FRect; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderDrawRectsF' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill a rectangle on the current rendering target with the drawing color. @@ -816,8 +955,12 @@ function SDL_RenderDrawRectsF(renderer: PSDL_Renderer; rects: PSDL_FRect; count: * * 0 on success, or -1 on error *} -function SDL_RenderFillRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRect' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderFillRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRect' {$ENDIF} {$ENDIF}; + {$endif} {** * Fill a rectangle on the current rendering target with the drawing color. * @@ -826,8 +969,16 @@ function SDL_RenderFillRect(renderer: PSDL_Renderer; rect: PSDL_Rect): cint32 cd * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderFillRectF_func = function(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 cdecl; +Var + SDL_RenderFillRectF : TSDL_RenderFillRectF_func = Nil; +{$else} + function SDL_RenderFillRectF(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRectF' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill some number of rectangles on the current rendering target with the drawing color. @@ -838,8 +989,12 @@ function SDL_RenderFillRectF(renderer: PSDL_Renderer; rect: PSDL_FRect): cint32 * * 0 on success, or -1 on error *} -function SDL_RenderFillRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRects' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderFillRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRects' {$ENDIF} {$ENDIF}; + {$endif} {** * Fill some number of rectangles on the current rendering target with the drawing color. * @@ -849,8 +1004,16 @@ function SDL_RenderFillRects(renderer: PSDL_Renderer; rects: PSDL_Rect; count: c * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderFillRectsF_func = function(renderer: PSDL_Renderer; rects: PSDL_FRect; count: cint32): cint32 cdecl; +Var + SDL_RenderFillRectsF : TSDL_RenderFillRectsF_func = Nil; +{$else} + function SDL_RenderFillRectsF(renderer: PSDL_Renderer; rects: PSDL_FRect; count: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderFillRectsF' {$ENDIF} {$ENDIF}; +{$endif} {** * Copy a portion of the texture to the current rendering target. @@ -864,8 +1027,12 @@ function SDL_RenderFillRectsF(renderer: PSDL_Renderer; rects: PSDL_FRect; count: * * 0 on success, or -1 on error *} -function SDL_RenderCopy(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect: PSDL_Rect; dstrect: PSDL_Rect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderCopy' {$ENDIF} {$ENDIF}; - +{$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} +function SDL_RenderCopy(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect: PSDL_Rect; dstrect: PSDL_Rect): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderCopy' {$ENDIF} {$ENDIF}; + {$endif} {** * Copy a portion of the texture to the current rendering target. * @@ -876,8 +1043,16 @@ function SDL_RenderCopy(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect: * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderCopyF_func = function(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect: PSDL_Rect; dstrect: PSDL_FRect): cint32 cdecl; +Var + SDL_RenderCopyF : TSDL_RenderCopyF_func = Nil; +{$else} + function SDL_RenderCopyF(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect: PSDL_Rect; dstrect: PSDL_FRect): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderCopyF' {$ENDIF} {$ENDIF}; +{$endif} {** * Copy a portion of the source texture to the current rendering target, rotating it by angle around the given center @@ -893,9 +1068,11 @@ function SDL_RenderCopyF(renderer: PSDL_Renderer; texture: PSDL_Texture; srcrect * flip An SDL_RendererFlip value stating which flipping actions should be performed on the texture * * 0 on success, or -1 on error - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_RenderCopyEx(renderer: PSDL_Renderer; texture: PSDL_Texture; const srcrect: PSDL_Rect; dstrect: PSDL_Rect; angle: cdouble; center: PSDL_Point; flip: TSDL_RenderFlip): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderCopyEx' {$ENDIF} {$ENDIF}; - + {$endif} {** * Copy a portion of the source texture to the current rendering target, rotating it by angle around the given center * @@ -909,14 +1086,24 @@ function SDL_RenderCopyEx(renderer: PSDL_Renderer; texture: PSDL_Texture; const * * 0 on success, or -1 on error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderCopyExF_func = function(renderer: PSDL_Renderer; texture: PSDL_Texture; const srcrect: PSDL_Rect; dstrect: PSDL_FRect; angle: cdouble; center: PSDL_FPoint; flip: TSDL_RenderFlip): cint32 cdecl; +Var + SDL_RenderCopyExF : TSDL_RenderCopyExF_func = Nil; +{$else} + function SDL_RenderCopyExF(renderer: PSDL_Renderer; texture: PSDL_Texture; const srcrect: PSDL_Rect; dstrect: PSDL_FRect; angle: cdouble; center: PSDL_FPoint; flip: TSDL_RenderFlip): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderCopyExF' {$ENDIF} {$ENDIF}; +{$endif} {** * Render a list of triangles, optionally using a texture and indices into the * vertex array. Color and alpha modulation is done per vertex. * SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_RenderGeometry( renderer: PSDL_Renderer; texture: PSDL_Texture; @@ -956,12 +1143,14 @@ function SDL_RenderGeometryRaw( * * This is a very slow operation, and should not be used frequently. *} -function SDL_RenderReadPixels(renderer: PSDL_Renderer; rect: PSDL_Rect; format: cuint32; pixels: Pointer; pitch: cint32): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderReadPixels' {$ENDIF} {$ENDIF}; +function SDL_RenderReadPixels(renderer: PSDL_Renderer; rect: PSDL_Rect; format: cuint32; pixels: Pointer; pitch: cint32): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderReadPixels' {$ENDIF} {$ENDIF}; {** * Update the screen with rendering performed. *} -procedure SDL_RenderPresent(renderer: PSDL_Renderer) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderPresent' {$ENDIF} {$ENDIF}; +procedure SDL_RenderPresent(renderer: PSDL_Renderer) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderPresent' {$ENDIF} {$ENDIF}; {** * Destroy the specified texture. @@ -969,7 +1158,8 @@ procedure SDL_RenderPresent(renderer: PSDL_Renderer) cdecl; external SDL_LibName * SDL_CreateTexture() * SDL_CreateTextureFromSurface() *} -procedure SDL_DestroyTexture(texture: PSDL_Texture) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyTexture' {$ENDIF} {$ENDIF}; +procedure SDL_DestroyTexture(texture: PSDL_Texture) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyTexture' {$ENDIF} {$ENDIF}; {** * Destroy the rendering context for a window and free associated @@ -977,7 +1167,8 @@ procedure SDL_DestroyTexture(texture: PSDL_Texture) cdecl; external SDL_LibName * * SDL_CreateRenderer() *} -procedure SDL_DestroyRenderer(renderer: PSDL_Renderer) cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyRenderer' {$ENDIF} {$ENDIF}; +procedure SDL_DestroyRenderer(renderer: PSDL_Renderer) cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyRenderer' {$ENDIF} {$ENDIF}; {** * Force the rendering context to flush any pending commands to the underlying @@ -1015,7 +1206,8 @@ function SDL_RenderFlush(renderer: PSDL_Renderer): cint; cdecl; * * 0 on success, or -1 if the operation is not supported *} -function SDL_GL_BindTexture(texture: PSDL_Texture; texw: pcfloat; texh: pcfloat): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_BindTexture' {$ENDIF} {$ENDIF}; +function SDL_GL_BindTexture(texture: PSDL_Texture; texw: pcfloat; texh: pcfloat): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_BindTexture' {$ENDIF} {$ENDIF}; {** * Unbind a texture from the current OpenGL/ES/ES2 context. @@ -1024,8 +1216,9 @@ function SDL_GL_BindTexture(texture: PSDL_Texture; texw: pcfloat; texh: pcfloat) * * 0 on success, or -1 if the operation is not supported *} -function SDL_GL_UnbindTexture(texture: PSDL_Texture): cint32 cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_UnbindTexture' {$ENDIF} {$ENDIF}; - +function SDL_GL_UnbindTexture(texture: PSDL_Texture): cint32 cdecl; + external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_UnbindTexture' {$ENDIF} {$ENDIF}; + {$endif} {** * Get the CAMetalLayer associated with the given Metal renderer. * @@ -1033,8 +1226,16 @@ function SDL_GL_UnbindTexture(texture: PSDL_Texture): cint32 cdecl; external SDL * but it can be safely cast to a pointer to `CAMetalLayer`. * *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderGetMetalLayer_func = function(renderer: PSDL_Renderer): Pointer; cdecl; +Var + SDL_RenderGetMetalLayer : TSDL_RenderGetMetalLayer_func = Nil; +{$else} + function SDL_RenderGetMetalLayer(renderer: PSDL_Renderer): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetMetalLayer' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the Metal command encoder for the current frame @@ -1047,15 +1248,25 @@ function SDL_RenderGetMetalLayer(renderer: PSDL_Renderer): Pointer; cdecl; * hidden/minimized/offscreen. This doesn't apply to command encoders for * render targets, just the window's backbacker. Check your return values! *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderGetMetalCommandEncoder_func = function(renderer: PSDL_Renderer): Pointer; cdecl; +Var + SDL_RenderGetMetalCommandEncoder : TSDL_RenderGetMetalCommandEncoder_func = Nil; +{$else} + function SDL_RenderGetMetalCommandEncoder(renderer: PSDL_Renderer): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderGetMetalCommandEncoder' {$ENDIF} {$ENDIF}; +{$endif} {** * Toggle VSync of the given renderer. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_RenderSetVSync(renderer: PSDL_Renderer; vsync: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RenderSetVSync' {$ENDIF} {$ENDIF}; - + {$endif} {** * Update a rectangle within a planar YV12 or IYUV texture with new pixel data. * @@ -1074,8 +1285,17 @@ function SDL_RenderSetVSync(renderer: PSDL_Renderer; vsync: cint): cint; cdecl; * a contiguous block of Y and U/V planes in the proper order, but * this function is available if your pixel data is not contiguous. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UpdateYUVTexture_func = function(texture: PSDL_Texture; rect: PSDL_Rect; Yplane: pcuint8; Ypitch: cint32; Uplane: pcuint8; UPitch: cint32; Vplane: pcuint8; VPitch: cint32):cint32; + cdecl; +Var + SDL_UpdateYUVTexture : TSDL_UpdateYUVTexture_func = Nil; +{$else} + function SDL_UpdateYUVTexture(texture: PSDL_Texture; rect: PSDL_Rect; Yplane: pcuint8; Ypitch: cint32; Uplane: pcuint8; UPitch: cint32; Vplane: pcuint8; VPitch: cint32):cint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateYUVTexture' {$ENDIF} {$ENDIF}; +{$endif} {** * Update a rectangle within a planar NV12 or NV21 texture with new pixels. @@ -1083,7 +1303,9 @@ function SDL_UpdateYUVTexture(texture: PSDL_Texture; rect: PSDL_Rect; Yplane: pc * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous * block of NV12/21 planes in the proper order, but this function is available * if your pixel data is not contiguous. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} function SDL_UpdateNVTexture( texture: PSDL_Texture; Const rect: PSDL_Rect; @@ -1091,3 +1313,4 @@ function SDL_UpdateNVTexture( Const UVplane: Pcuint8; UVpitch: cint ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateNVTexture' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlrwops.inc b/units/sdlrwops.inc index e0d844e..43ab845 100644 --- a/units/sdlrwops.inc +++ b/units/sdlrwops.inc @@ -131,27 +131,74 @@ type * * Functions to create SDL_RWops structures from various data streams. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWFromFile_func = function(const _file: PAnsiChar; const mode: PAnsiChar): PSDL_RWops; cdecl; +Var + SDL_RWFromFile : TSDL_RWFromFile_func = Nil; +{$else} + function SDL_RWFromFile(const _file: PAnsiChar; const mode: PAnsiChar): PSDL_RWops; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWFromFile' {$ENDIF} {$ENDIF}; +{$endif} {function SDL_RWFromFP(fp: file; autoclose: TSDL_Bool): PSDL_RWops; cdecl; external SDL_LibName;} //don't know if this works +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWFromFP_func = function(fp: Pointer; autoclose: TSDL_Bool): PSDL_RWops; cdecl; +Var + SDL_RWFromFP : TSDL_RWFromFP_func = Nil; +{$else} + function SDL_RWFromFP(fp: Pointer; autoclose: TSDL_Bool): PSDL_RWops; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWFromFP' {$ENDIF} {$ENDIF}; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWFromMem_func = function(mem: Pointer; size: cint): PSDL_RWops; cdecl; +Var + SDL_RWFromMem : TSDL_RWFromMem_func = Nil; +{$else} function SDL_RWFromMem(mem: Pointer; size: cint): PSDL_RWops; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWFromMem' {$ENDIF} {$ENDIF}; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWFromConstMem_func = function(const mem: Pointer; size: cint): PSDL_RWops; cdecl; +Var + SDL_RWFromConstMem : TSDL_RWFromConstMem_func = Nil; +{$else} function SDL_RWFromConstMem(const mem: Pointer; size: cint): PSDL_RWops; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWFromConstMem' {$ENDIF} {$ENDIF}; +{$endif} {*RWFrom functions*} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AllocRW_func =function : PSDL_RWops; cdecl; +Var + SDL_AllocRW : TSDL_AllocRW_func = Nil; +{$else} function SDL_AllocRW: PSDL_RWops; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AllocRW' {$ENDIF} {$ENDIF}; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeRW_proc = procedure(area: PSDL_RWops); cdecl; +Var + SDL_FreeRW : TSDL_FreeRW_proc = Nil; +{$else} procedure SDL_FreeRW(area: PSDL_RWops); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeRW' {$ENDIF} {$ENDIF}; +{$endif} const RW_SEEK_SET = 0; {**< Seek from the beginning of data *} @@ -161,8 +208,16 @@ const {** * Return the size of the file in this rwops, or -1 if unknown *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWsize_func = function(context: PSDL_RWops): cint64; cdecl; +Var + SDL_RWsize : TSDL_RWsize_func = Nil; +{$else} + function SDL_RWsize(context: PSDL_RWops): cint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWsize' {$ENDIF} {$ENDIF}; +{$endif} {** * Seek to \c offset relative to \c whence, one of stdio's whence values: @@ -170,14 +225,30 @@ function SDL_RWsize(context: PSDL_RWops): cint64; cdecl; * * \return the final offset in the data stream, or -1 on error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWseek_func = function(context: PSDL_RWops; offset: cint64; whence: cint): cint64; cdecl; +Var + SDL_RWseek : TSDL_RWseek_func = Nil; +{$else} + function SDL_RWseek(context: PSDL_RWops; offset: cint64; whence: cint): cint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_RWseek' {$ENDIF} {$ENDIF}; +{$endif} {** * Return the current offset in the data stream, or -1 on error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWtell_func = function(context: PSDL_RWops): cint64; cdecl; +Var + SDL_RWtell : TSDL_RWtell_func = Nil; +{$else} + function SDL_RWtell(context: PSDL_RWops): cint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWtell' {$ENDIF} {$ENDIF}; +{$endif} {** * Read up to \c maxnum objects each of size \c size from the data @@ -185,8 +256,16 @@ function SDL_RWtell(context: PSDL_RWops): cint64; cdecl; * * \return the number of objects read, or 0 at error or end of file. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWread_func = function(context: PSDL_RWops; ptr: Pointer; size: csize_t; n: csize_t): csize_t; cdecl; +Var + SDL_RWread : TSDL_RWread_func = Nil; +{$else} + function SDL_RWread(context: PSDL_RWops; ptr: Pointer; size: csize_t; n: csize_t): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWread' {$ENDIF} {$ENDIF}; +{$endif} {** * Write exactly \c num objects each of size \c size from the area @@ -194,16 +273,32 @@ function SDL_RWread(context: PSDL_RWops; ptr: Pointer; size: csize_t; n: csize_t * * \return the number of objects written, or 0 at error or end of file. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWwrite_func = function(context: PSDL_RWops; ptr: Pointer; size: csize_t; n: csize_t): csize_t; cdecl; +Var + SDL_RWwrite : TSDL_RWwrite_func = Nil; +{$else} + function SDL_RWwrite(context: PSDL_RWops; ptr: Pointer; size: csize_t; n: csize_t): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWwrite' {$ENDIF} {$ENDIF}; +{$endif} {** * Close and free an allocated SDL_RWops structure. * * \return 0 if successful or -1 on write error when flushing data. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RWclose_func = function(context: PSDL_RWops): cint; cdecl; +Var + SDL_RWclose : TSDL_RWclose_func = Nil; +{$else} + function SDL_RWclose(context: PSDL_RWops): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RWclose' {$ENDIF} {$ENDIF}; +{$endif} {** * Load all the data from an SDL data stream. @@ -218,8 +313,16 @@ function SDL_RWclose(context: PSDL_RWops): cint; cdecl; * * \return the data, or NULL if there was an error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadFile_RW_func = function(src: PSDL_RWops; datasize: pcsize_t; freesrc: cint): Pointer; cdecl; +Var + SDL_LoadFile_RW : TSDL_LoadFile_RW_func = Nil; +{$else} + function SDL_LoadFile_RW(src: PSDL_RWops; datasize: pcsize_t; freesrc: cint): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadFile_RW' {$ENDIF} {$ENDIF}; +{$endif} {** * Load an entire file. @@ -234,28 +337,92 @@ function SDL_LoadFile_RW(src: PSDL_RWops; datasize: pcsize_t; freesrc: cint): Po * * \return the data, or NULL if there was an error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadFile_func = function(file_: PAnsiChar; datasize: pcsize_t): Pointer; cdecl; +Var + SDL_LoadFile : TSDL_LoadFile_func = Nil; +{$else} + function SDL_LoadFile(file_: PAnsiChar; datasize: pcsize_t): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadFile' {$ENDIF} {$ENDIF}; +{$endif} {** * Read endian functions * * Read an item of the specified endianness and return in native format. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadU8_func = function(src: PSDL_RWops): cuint8; cdecl; +Var + SDL_ReadU8 : TSDL_ReadU8_func = Nil; +{$else} + function SDL_ReadU8(src: PSDL_RWops): cuint8; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadU8' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadLE16_func = function(src: PSDL_RWops): cuint16; cdecl; +Var + SDL_ReadLE16 : TSDL_ReadLE16_func = Nil; +{$else} + function SDL_ReadLE16(src: PSDL_RWops): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadLE16' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadBE16_func = function(src: PSDL_RWops): cuint16; cdecl; +Var + SDL_ReadBE16 : TSDL_ReadBE16_func = Nil; +{$else} + function SDL_ReadBE16(src: PSDL_RWops): cuint16; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadBE16' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadLE32_func = function(src: PSDL_RWops): cuint32; cdecl; +Var + SDL_ReadLE32 : TSDL_ReadLE32_func = Nil; +{$else} + function SDL_ReadLE32(src: PSDL_RWops): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadLE32' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadBE32_func = function(src: PSDL_RWops): cuint32; cdecl; +Var + SDL_ReadBE32 : TSDL_ReadBE32_func = Nil; +{$else} + function SDL_ReadBE32(src: PSDL_RWops): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadBE32' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadLE64_func = function(src: PSDL_RWops): cuint64; cdecl; +Var + SDL_ReadLE64 : TSDL_ReadLE64_func = Nil; +{$else} + function SDL_ReadLE64(src: PSDL_RWops): cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadLE64' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ReadBE64_func = function(src: PSDL_RWops): cuint64; cdecl; +Var + SDL_ReadBE64 : TSDL_ReadBE64_func = Nil; +{$else} + function SDL_ReadBE64(src: PSDL_RWops): cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ReadBE64' {$ENDIF} {$ENDIF}; +{$endif} { Read endian functions } {** @@ -263,18 +430,74 @@ function SDL_ReadBE64(src: PSDL_RWops): cuint64; cdecl; * * Write an item of native format to the specified endianness. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteU8_func = function(dst: PSDL_RWops; value: cuint8): csize_t; cdecl; +Var + SDL_WriteU8 : TSDL_WriteU8_func = Nil; +{$else} + function SDL_WriteU8(dst: PSDL_RWops; value: cuint8): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteU8' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteLE16_func = function(dst: PSDL_RWops; value: cuint16): csize_t; cdecl; +Var + SDL_WriteLE16 : TSDL_WriteLE16_func = Nil; +{$else} + function SDL_WriteLE16(dst: PSDL_RWops; value: cuint16): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteLE16' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteBE16_func = function(dst: PSDL_RWops; value: cuint16): csize_t; cdecl; +Var + SDL_WriteBE16 : TSDL_WriteBE16_func = Nil; +{$else} + function SDL_WriteBE16(dst: PSDL_RWops; value: cuint16): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteBE16' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteLE32_func = function(dst: PSDL_RWops; value: cuint32): csize_t; cdecl; +Var + SDL_WriteLE32 : TSDL_WriteLE32_func = Nil; +{$else} + function SDL_WriteLE32(dst: PSDL_RWops; value: cuint32): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteLE32' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteBE32_func = function(dst: PSDL_RWops; value: cuint32): csize_t; cdecl; +Var + SDL_WriteBE32 : TSDL_WriteBE32_func = Nil; +{$else} + function SDL_WriteBE32(dst: PSDL_RWops; value: cuint32): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteBE32' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteLE64_func = function(dst: PSDL_RWops; value: cuint64): csize_t; cdecl; +Var + SDL_WriteLE64 : TSDL_WriteLE64_func = Nil; +{$else} + function SDL_WriteLE64(dst: PSDL_RWops; value: cuint64): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteLE64' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WriteBE64_func = function(dst: PSDL_RWops; value: cuint64): csize_t; cdecl; +Var + SDL_WriteBE64 : TSDL_WriteBE64_func = Nil; +{$else} + function SDL_WriteBE64(dst: PSDL_RWops; value: cuint64): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WriteBE64' {$ENDIF} {$ENDIF}; +{$endif} { Write endian functions } diff --git a/units/sdlsensor.inc b/units/sdlsensor.inc index 995fa7d..652e467 100644 --- a/units/sdlsensor.inc +++ b/units/sdlsensor.inc @@ -108,7 +108,9 @@ const * events will not be delivered. * * \since This function is available since SDL 2.0.14. - *} + *} {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} procedure SDL_LockSensors(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockSensors' {$ENDIF} {$ENDIF}; procedure SDL_UnlockSensors(); cdecl; @@ -293,3 +295,4 @@ procedure SDL_SensorClose(sensor: PSDL_Sensor); cdecl; *} procedure SDL_SensorUpdate(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SensorUpdate' {$ENDIF} {$ENDIF}; + {$endif} diff --git a/units/sdlshape.inc b/units/sdlshape.inc index 56f6826..7f15aa7 100644 --- a/units/sdlshape.inc +++ b/units/sdlshape.inc @@ -33,8 +33,16 @@ const * * \sa SDL_DestroyWindow *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateShapedWindow_func = function(title: PAnsiChar; x: cuint; y: cuint; w: cuint; h: cuint; flags: cuint32): PSDL_Window; cdecl; +Var + SDL_CreateShapedWindow : TSDL_CreateShapedWindow_func = Nil; +{$else} + function SDL_CreateShapedWindow(title: PAnsiChar; x: cuint; y: cuint; w: cuint; h: cuint; flags: cuint32): PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateShapedWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Return whether the given window is a shaped window. @@ -47,8 +55,16 @@ function SDL_CreateShapedWindow(title: PAnsiChar; x: cuint; y: cuint; w: cuint; * * \sa SDL_CreateShapedWindow *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsShapedWindow_func = function(window: PSDL_Window): TSDL_Bool; cdecl; +Var + SDL_IsShapedWindow : TSDL_IsShapedWindow_func = Nil; +{$else} + function SDL_IsShapedWindow(window: PSDL_Window): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IsShapedWindow' {$ENDIF} {$ENDIF}; +{$endif} type @@ -105,8 +121,16 @@ type * \sa SDL_WindowShapeMode * \sa SDL_GetShapedWindowMode *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowShape_func = function(window: PSDL_Window; shape: PSDL_Surface; shape_mode: PSDL_WindowShapeMode): cint; cdecl; +Var + SDL_SetWindowShape : TSDL_SetWindowShape_func = Nil; +{$else} + function SDL_SetWindowShape(window: PSDL_Window; shape: PSDL_Surface; shape_mode: PSDL_WindowShapeMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowShape' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the shape parameters of a shaped window. @@ -125,5 +149,13 @@ function SDL_SetWindowShape(window: PSDL_Window; shape: PSDL_Surface; shape_mode * \sa SDL_WindowShapeMode * \sa SDL_SetWindowShape *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetShapedWindowMode_func = function(window: PSDL_Window; shape_mode: PSDL_WindowShapeMode): cint; cdecl; +Var + SDL_GetShapedWindowMode : TSDL_GetShapedWindowMode_func = Nil; +{$else} + function SDL_GetShapedWindowMode(window: PSDL_Window; shape_mode: PSDL_WindowShapeMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetShapedWindowMode' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlstdinc.inc b/units/sdlstdinc.inc index c6aca34..b00bf9b 100644 --- a/units/sdlstdinc.inc +++ b/units/sdlstdinc.inc @@ -71,6 +71,18 @@ type * * \since This function is available since SDL 2.24.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetOriginalMemoryFunctions_proc = procedure ( + malloc_func: PSDL_malloc_func; + calloc_func: PSDL_calloc_func; + realloc_func: PSDL_realloc_func; + free_func: PSDL_free_func +); cdecl; +Var + SDL_GetOriginalMemoryFunctions : TSDL_GetOriginalMemoryFunctions_proc = Nil; + +{$else} procedure SDL_GetOriginalMemoryFunctions( malloc_func: PSDL_malloc_func; calloc_func: PSDL_calloc_func; @@ -78,12 +90,24 @@ procedure SDL_GetOriginalMemoryFunctions( free_func: PSDL_free_func ); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetOriginalMemoryFunctions' {$ENDIF} {$ENDIF}; +{$endif} (** * Get the current set of SDL memory functions * * \since This function is available since SDL 2.0.7. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetMemoryFunctions_proc = procedure ( + malloc_func: PSDL_malloc_func; + calloc_func: PSDL_calloc_func; + realloc_func: PSDL_realloc_func; + free_func: PSDL_free_func +); cdecl; +Var + SDL_GetMemoryFunctions : TSDL_GetMemoryFunctions_proc = Nil; +{$else} procedure SDL_GetMemoryFunctions( malloc_func: PSDL_malloc_func; calloc_func: PSDL_calloc_func; @@ -91,12 +115,25 @@ procedure SDL_GetMemoryFunctions( free_func: PSDL_free_func ); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetMemoryFunctions' {$ENDIF} {$ENDIF}; +{$endif} (** * Replace SDL's memory allocation functions with a custom set * * \since This function is available since SDL 2.0.7. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetMemoryFunctions_func = function ( + malloc_func: TSDL_malloc_func; + calloc_func: TSDL_calloc_func; + realloc_func: TSDL_realloc_func; + free_func: TSDL_free_func +): cint; cdecl; + +Var + SDL_SetMemoryFunctions : TSDL_SetMemoryFunctions_func = Nil; +{$else} function SDL_SetMemoryFunctions( malloc_func: TSDL_malloc_func; calloc_func: TSDL_calloc_func; @@ -104,27 +141,48 @@ function SDL_SetMemoryFunctions( free_func: TSDL_free_func ): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetMemoryFunctions' {$ENDIF} {$ENDIF}; +{$endif} (** * Get the number of outstanding (unfreed) allocations * * \since This function is available since SDL 2.0.7. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumAllocations_func = function(): cint; cdecl; +Var + SDL_GetNumAllocations : TSDL_GetNumAllocations_func = Nil; +{$else} + function SDL_GetNumAllocations(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumAllocations' {$ENDIF} {$ENDIF}; +{$endif} (** * Allocate a block of memory. The memory is *not* initialized. *) +{$ifdef SDL_RUNTIME_LOADING} +Var + SDL_malloc : TSDL_malloc_func = Nil; +{$else} + function SDL_malloc(size: csize_t): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_malloc' {$ENDIF} {$ENDIF}; +{$endif} (** * Allocate a block of memory that can fit an array of nmemb elements, each of given size. * The memory is initialized by setting every byte to 0. *) +{$ifdef SDL_RUNTIME_LOADING} +Var + SDL_calloc : TSDL_calloc_func = Nil; +{$else} + function SDL_calloc(nmemb, size: csize_t): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_calloc' {$ENDIF} {$ENDIF}; +{$endif} (** * Resize a block of memory allocated previously with SDL_malloc() or SDL_calloc(). @@ -132,8 +190,14 @@ function SDL_calloc(nmemb, size: csize_t): Pointer; cdecl; * The returned pointer may or may not be the same as the original pointer. * If the new size is larger than the old size, any new memory will *not* be initialized. *) +{$ifdef SDL_RUNTIME_LOADING} +Var + SDL_realloc : TSDL_realloc_func = Nil; +{$else} + function SDL_realloc(mem: Pointer; size: csize_t): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_realloc' {$ENDIF} {$ENDIF}; +{$endif} (** * Free memory returned by functions like SDL_GetBasePath(), SDL_GetPrefPath(), etc. @@ -141,8 +205,16 @@ function SDL_realloc(mem: Pointer; size: csize_t): Pointer; cdecl; * Calling SDL_free() on the same pointer twice is undefined behaviour and may cause * your program to crash or behave in unexpected ways. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_free_proc = procedure(mem: Pointer); cdecl; +Var + SDL_free : TSDL_free_proc = Nil; +{$else} + procedure SDL_free(mem: Pointer); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_free' {$ENDIF} {$ENDIF}; +{$endif} @@ -158,8 +230,16 @@ SDL2-for-Pascal: All comments are added by us and not found in the include file. * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isalpha_func = function(x: cint):cint; cdecl; +Var + SDL_isalpha : TSDL_isalpha_func = Nil; +{$else} + function SDL_isalpha(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isalpha' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is an alphanumeric character. @@ -168,8 +248,16 @@ function SDL_isalpha(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isalnum_func = function(x: cint):cint; cdecl; +Var + SDL_isalnum : TSDL_isalnum_func = Nil; +{$else} + function SDL_isalnum(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isalnum' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a blank character (a space or a tab). @@ -178,8 +266,16 @@ function SDL_isalnum(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isblank_func = function(x: cint):cint; cdecl; +Var + SDL_isblank : TSDL_isblank_func = Nil; +{$else} + function SDL_isblank(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isblank' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a control character. @@ -188,8 +284,16 @@ function SDL_isblank(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iscntrl_func = function(x: cint):cint; cdecl; +Var + SDL_iscntrl : TSDL_iscntrl_func = Nil; +{$else} + function SDL_iscntrl(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_iscntrl' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a decimal digit. @@ -198,8 +302,16 @@ function SDL_iscntrl(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isdigit_func = function(x: cint):cint; cdecl; +Var + SDL_isdigit : TSDL_isdigit_func = Nil; +{$else} + function SDL_isdigit(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isdigit' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a hexadecimal digit. @@ -208,8 +320,16 @@ function SDL_isdigit(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isxdigit_func = function(x: cint):cint; cdecl; +Var + SDL_isxdigit : TSDL_isxdigit_func = Nil; +{$else} + function SDL_isxdigit(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isxdigit' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is any printable character @@ -219,8 +339,16 @@ function SDL_isxdigit(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ispunct_func = function(x: cint):cint; cdecl; +Var + SDL_ispunct : TSDL_ispunct_func = Nil; +{$else} + function SDL_ispunct(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ispunct' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a whitespace character. @@ -232,8 +360,16 @@ function SDL_ispunct(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isspace_func = function(x: cint):cint; cdecl; +Var + SDL_isspace : TSDL_isspace_func = Nil; +{$else} + function SDL_isspace(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isspace' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is an uppercase letter. @@ -242,8 +378,16 @@ function SDL_isspace(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.12. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isupper_func = function(x: cint):cint; cdecl; +Var + SDL_isupper : TSDL_isupper_func = Nil; +{$else} + function SDL_isupper(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isupper' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a lowercase letter. @@ -252,8 +396,16 @@ function SDL_isupper(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.12. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_islower_func = function(x: cint):cint; cdecl; +Var + SDL_islower : TSDL_islower_func = Nil; +{$else} + function SDL_islower(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_islower' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a printable character (including space). @@ -262,8 +414,16 @@ function SDL_islower(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isprint_func = function(x: cint):cint; cdecl; +Var + SDL_isprint : TSDL_isprint_func = Nil; +{$else} + function SDL_isprint(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isprint' {$ENDIF} {$ENDIF}; +{$endif} (** * Check if the provided ASCII character is a printable character (excluding space). @@ -272,8 +432,16 @@ function SDL_isprint(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_isgraph_func = function(x: cint):cint; cdecl; +Var + SDL_isgraph : TSDL_isgraph_func = Nil; +{$else} + function SDL_isgraph(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_isgraph' {$ENDIF} {$ENDIF}; +{$endif} (** * If the given ASCII character is a lowercase letter, converts it to uppercase. @@ -281,8 +449,16 @@ function SDL_isgraph(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_toupper_func = function(x: cint):cint; cdecl; +Var + SDL_toupper : TSDL_toupper_func = Nil; +{$else} + function SDL_toupper(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_toupper' {$ENDIF} {$ENDIF}; +{$endif} (** * If the given ASCII character is an uppercase letter, converts it to lowercase. @@ -290,8 +466,16 @@ function SDL_toupper(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_tolower_func = function(x: cint):cint; cdecl; +Var + SDL_tolower : TSDL_tolower_func = Nil; +{$else} + function SDL_tolower(x: cint):cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_tolower' {$ENDIF} {$ENDIF}; +{$endif} @@ -304,8 +488,16 @@ function SDL_tolower(x: cint):cint; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_acos_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_acos : TSDL_acos_func = Nil; +{$else} + function SDL_acos(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_acos' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc cosine of x; @@ -313,8 +505,16 @@ function SDL_acos(x: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_acosf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_acosf : TSDL_acosf_func = Nil; +{$else} + function SDL_acosf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_acosf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc sine of x; @@ -322,8 +522,16 @@ function SDL_acosf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_asin_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_asin : TSDL_asin_func = Nil; +{$else} + function SDL_asin(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_asin' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc sine of x; @@ -331,8 +539,16 @@ function SDL_asin(x: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_asinf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_asinf : TSDL_asinf_func = Nil; +{$else} + function SDL_asinf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_asinf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc tangent of x; @@ -340,8 +556,16 @@ function SDL_asinf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_atan_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_atan : TSDL_atan_func = Nil; +{$else} + function SDL_atan(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_atan' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc tangent of x; @@ -349,8 +573,16 @@ function SDL_atan(x: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_atanf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_atanf : TSDL_atanf_func = Nil; +{$else} + function SDL_atanf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_atanf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc tangent of y/x, using the signs of the two arguments @@ -358,8 +590,16 @@ function SDL_atanf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_atan2_func = function(y, x: cdouble): cdouble; cdecl; +Var + SDL_atan2 : TSDL_atan2_func = Nil; +{$else} + function SDL_atan2(y, x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_atan2' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the arc tangent of y/x, using the signs of the two arguments @@ -367,24 +607,48 @@ function SDL_atan2(y, x: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_atan2f_func = function(y, x: cfloat): cfloat; cdecl; +Var + SDL_atan2f : TSDL_atan2f_func = Nil; +{$else} + function SDL_atan2f(y, x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_atan2f' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the smallest integral value that is not less than x. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ceil_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_ceil : TSDL_ceil_func = Nil; +{$else} + function SDL_ceil(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ceil' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the smallest integral value that is not less than x. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ceilf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_ceilf : TSDL_ceilf_func = Nil; +{$else} + function SDL_ceilf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ceilf' {$ENDIF} {$ENDIF}; +{$endif} (** * Return a number whose absolute value matches that of x, @@ -392,8 +656,16 @@ function SDL_ceilf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_copysign_func = function(x, y: cdouble): cdouble; cdecl; +Var + SDL_copysign : TSDL_copysign_func = Nil; +{$else} + function SDL_copysign(x, y: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_copysign' {$ENDIF} {$ENDIF}; +{$endif} (** * Return a number whose absolute value matches that of x, @@ -401,24 +673,48 @@ function SDL_copysign(x, y: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_copysignf_func = function(x, y: cfloat): cfloat; cdecl; +Var + SDL_copysignf : TSDL_copysignf_func = Nil; +{$else} + function SDL_copysignf(x, y: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_copysignf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the cosine of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_cos_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_cos : TSDL_cos_func = Nil; +{$else} + function SDL_cos(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_cos' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the cosine of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_cosf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_cosf : TSDL_cosf_func = Nil; +{$else} + function SDL_cosf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_cosf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the value of e (the base of natural logarithms) @@ -426,8 +722,16 @@ function SDL_cosf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.9. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_exp_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_exp : TSDL_exp_func = Nil; +{$else} + function SDL_exp(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_exp' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the value of e (the base of natural logarithms) @@ -435,56 +739,112 @@ function SDL_exp(x: cdouble): cdouble; cdecl; * * \since This function is available since SDL 2.0.9. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_expf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_expf : TSDL_expf_func = Nil; +{$else} + function SDL_expf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_expf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the absolute value of x. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_fabs_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_fabs : TSDL_fabs_func = Nil; +{$else} + function SDL_fabs(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_fabs' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the absolute value of x. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_fabsf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_fabsf : TSDL_fabsf_func = Nil; +{$else} + function SDL_fabsf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_fabsf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the largest integral value that is not greater than x. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_floor_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_floor : TSDL_floor_func = Nil; +{$else} + function SDL_floor(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_floor' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the largest integral value that is not greater than x. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_floorf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_floorf : TSDL_floorf_func = Nil; +{$else} + function SDL_floorf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_floorf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the floating-point remainder of dividing x by y. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_fmod_func = function(x, y: cdouble): cdouble; cdecl; +Var + SDL_fmod : TSDL_fmod_func = Nil; +{$else} + function SDL_fmod(x, y: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_fmod' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the floating-point remainder of dividing x by y. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_fmodf_func = function(x, y: cfloat): cfloat; cdecl; +Var + SDL_fmodf : TSDL_fmodf_func = Nil; +{$else} + function SDL_fmodf(x, y: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_fmodf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the natural logarithm of x. @@ -495,9 +855,17 @@ function SDL_fmodf(x, y: cfloat): cfloat; cdecl; but since Pascal names are case-insensitive, it is in conflict with SDL_Log (logging function). Hence we decided to rename it. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_nlog_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_nlog : TSDL_nlog_func = Nil; +{$else} + function SDL_nlog(x: cdouble): cdouble; cdecl; external SDL_LibName name {$IF DEFINED(DELPHI) AND DEFINED(MACOS)} '_SDL_log' {$ELSE} 'SDL_log' {$ENDIF}; +{$endif} (** * Calculate the natural logarithm of x. @@ -508,73 +876,145 @@ function SDL_nlog(x: cdouble): cdouble; cdecl; but to be consistent with the renamed SDL_log function (see comment of SDL_nlog for details), we decided to rename it. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_nlogf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_nlogf : TSDL_nlogf_func = Nil; +{$else} + function SDL_nlogf(x: cfloat): cfloat; cdecl; external SDL_LibName name {$IF DEFINED(DELPHI) AND DEFINED(MACOS)} '_SDL_logf' {$ELSE} 'SDL_logf' {$ENDIF}; +{$endif} (** * Calculate the base 10 logarithm of x. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_log10_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_log10 : TSDL_log10_func = Nil; +{$else} + function SDL_log10(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_log10' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the base 10 logarithm of x. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_log10f_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_log10f : TSDL_log10f_func = Nil; +{$else} + function SDL_log10f(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_log10f' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integer, away from zero. * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_lround_func = function(x: cdouble): clong; cdecl; +Var + SDL_lround : TSDL_lround_func = Nil; +{$else} + function SDL_lround(x: cdouble): clong; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_lround' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integer, away from zero. * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_lroundf_func = function(x: cfloat): clong; cdecl; +Var + SDL_lroundf : TSDL_lroundf_func = Nil; +{$else} + function SDL_lroundf(x: cfloat): clong; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_lroundf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the value of x raised to the power of y. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_pow_func = function(x, y: cdouble): cdouble; cdecl; +Var + SDL_pow : TSDL_pow_func = Nil; +{$else} + function SDL_pow(x, y: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_pow' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the value of x raised to the power of y. * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_powf_func = function(x, y: cfloat): cfloat; cdecl; +Var + SDL_powf : TSDL_powf_func = Nil; +{$else} + function SDL_powf(x, y: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_powf' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integral value, away from zero. * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_round_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_round : TSDL_round_func = Nil; +{$else} + function SDL_round(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_round' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integral value, away from zero. * * \since This function is available since SDL 2.0.16. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_roundf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_roundf : TSDL_roundf_func = Nil; +{$else} + function SDL_roundf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_roundf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate x multiplied by the floating-point radix to the power of n. @@ -582,8 +1022,16 @@ function SDL_roundf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_scalbn_func = function(x: cdouble; n: cint): cdouble; cdecl; +Var + SDL_scalbn : TSDL_scalbn_func = Nil; +{$else} + function SDL_scalbn(x: cdouble; n: cint): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_scalbn' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate x multiplied by the floating-point radix to the power of n. @@ -591,72 +1039,144 @@ function SDL_scalbn(x: cdouble; n: cint): cdouble; cdecl; * * \since This function is available since SDL 2.0.8. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_scalbnf_func = function(x: cfloat; n: cint): cfloat; cdecl; +Var + SDL_scalbnf : TSDL_scalbnf_func = Nil; +{$else} + function SDL_scalbnf(x: cfloat; n: cint): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_scalbnf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the sine of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_sin_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_sin : TSDL_sin_func = Nil; +{$else} + function SDL_sin(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_sin' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the sine of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_sinf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_sinf : TSDL_sinf_func = Nil; +{$else} + function SDL_sinf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_sinf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the non-negative square root of x. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_sqrt_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_sqrt : TSDL_sqrt_func = Nil; +{$else} + function SDL_sqrt(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_sqrt' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the non-negative square root of x. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_sqrtf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_sqrtf : TSDL_sqrtf_func = Nil; +{$else} + function SDL_sqrtf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_sqrtf' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the tangent of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_tan_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_tan : TSDL_tan_func = Nil; +{$else} + function SDL_tan(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_tan' {$ENDIF} {$ENDIF}; +{$endif} (** * Calculate the tangent of x, where x is given in radians. * * \since This function is available since SDL 2.0.4. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_tanf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_tanf : TSDL_tanf_func = Nil; +{$else} + function SDL_tanf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_tanf' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integral value, towards zero. * * \since This function is available since SDL 2.0.14. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_trunc_func = function(x: cdouble): cdouble; cdecl; +Var + SDL_trunc : TSDL_trunc_func = Nil; +{$else} + function SDL_trunc(x: cdouble): cdouble; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_trunc' {$ENDIF} {$ENDIF}; +{$endif} (** * Round to nearest integral value, towards zero. * * \since This function is available since SDL 2.0.14. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_truncf_func = function(x: cfloat): cfloat; cdecl; +Var + SDL_truncf : TSDL_truncf_func = Nil; +{$else} + function SDL_truncf(x: cfloat): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_truncf' {$ENDIF} {$ENDIF}; +{$endif} @@ -669,8 +1189,16 @@ function SDL_truncf(x: cfloat): cfloat; cdecl; * * \since This function is available since SDL 2.0.0. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iconv_string_func = function(Const tocode, fromcode, inbuf: PAnsiChar; inbytesleft: csize_t): PAnsiChar; cdecl; +Var + SDL_iconv_string : TSDL_iconv_string_func = Nil; +{$else} + function SDL_iconv_string(Const tocode, fromcode, inbuf: PAnsiChar; inbytesleft: csize_t): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_iconv_string' {$ENDIF} {$ENDIF}; +{$endif} // These are macros in the original C headers, we will reimplement them as simple Pascal functions. function SDL_iconv_utf8_locale(Const str: PAnsiChar): PAnsiChar; cdecl; @@ -687,11 +1215,35 @@ const type PSDL_iconv = type Pointer; +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iconv_open_func = function(Const tocode, fromcode: PAnsiChar): PSDL_iconv; cdecl; +Var + SDL_iconv_open : TSDL_iconv_open_func = Nil; +{$else} + function SDL_iconv_open(Const tocode, fromcode: PAnsiChar): PSDL_iconv; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_iconv_open' {$ENDIF} {$ENDIF}; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iconv_close_func = function(cd: PSDL_iconv): cint; cdecl; +Var + SDL_iconv_close : TSDL_iconv_close_func = Nil; +{$else} function SDL_iconv_close(cd: PSDL_iconv): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_iconv_close' {$ENDIF} {$ENDIF}; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iconv_func = function(cd: PSDL_iconv; Const inbuf: PPAnsiChar; inbytesleft: pcsize_t; outbuf: PPAnsiChar; outbytesleft: pcsize_t): csize_t; cdecl; +Var + SDL_iconv : TSDL_iconv_func = Nil; +{$else} function SDL_iconv(cd: PSDL_iconv; Const inbuf: PPAnsiChar; inbytesleft: pcsize_t; outbuf: PPAnsiChar; outbytesleft: pcsize_t): csize_t; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_iconv' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlsurface.inc b/units/sdlsurface.inc index 61a458b..6c320fa 100644 --- a/units/sdlsurface.inc +++ b/units/sdlsurface.inc @@ -96,17 +96,57 @@ const * \param Amask The alpha mask of the surface to create. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateRGBSurface_func = function(flags: cuint32; width: cint; height: cint; depth: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): PSDL_Surface; cdecl; +Var + SDL_CreateRGBSurface : TSDL_CreateRGBSurface_func = Nil; +{$else} + function SDL_CreateRGBSurface(flags: cuint32; width: cint; height: cint; depth: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRGBSurface' {$ENDIF} {$ENDIF}; +{$endif} {* !!! FIXME for 2.1: why does this ask for depth? Format provides that. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateRGBSurfaceWithFormat_func = function(flags: cuint32; width, height, depth: cint; format: cuint32):PSDL_Surface; cdecl; +Var + SDL_CreateRGBSurfaceWithFormat : TSDL_CreateRGBSurfaceWithFormat_func = Nil; +{$else} + function SDL_CreateRGBSurfaceWithFormat(flags: cuint32; width, height, depth: cint; format: cuint32):PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRGBSurfaceWithFormat' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateRGBSurfaceFrom_func = function(pixels: Pointer; width: cint; height: cint; depth: cint; pitch: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): PSDL_Surface; cdecl; +Var + SDL_CreateRGBSurfaceFrom : TSDL_CreateRGBSurfaceFrom_func = Nil; +{$else} + function SDL_CreateRGBSurfaceFrom(pixels: Pointer; width: cint; height: cint; depth: cint; pitch: cint; Rmask: cuint32; Gmask: cuint32; Bmask: cuint32; Amask: cuint32): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRGBSurfaceFrom' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateRGBSurfaceWithFormatFrom_func = function(pixels: Pointer; width, height, depth, pitch: cint; format: cuint32):PSDL_Surface; cdecl; +Var + SDL_CreateRGBSurfaceWithFormatFrom : TSDL_CreateRGBSurfaceWithFormatFrom_func = Nil; +{$else} + function SDL_CreateRGBSurfaceWithFormatFrom(pixels: Pointer; width, height, depth, pitch: cint; format: cuint32):PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateRGBSurfaceWithFormatFrom' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FreeSurface_proc = procedure(surface: PSDL_Surface); cdecl; +Var + SDL_FreeSurface : TSDL_FreeSurface_proc = Nil; +{$else} + procedure SDL_FreeSurface(surface: PSDL_Surface); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FreeSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the palette used by a surface. @@ -116,8 +156,16 @@ procedure SDL_FreeSurface(surface: PSDL_Surface); cdecl; * A single palette can be shared with many surfaces. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetSurfacePalette_func = function(surface: PSDL_Surface; palette: PSDL_Palette): cint; cdecl; +Var + SDL_SetSurfacePalette : TSDL_SetSurfacePalette_func = Nil; +{$else} + function SDL_SetSurfacePalette(surface: PSDL_Surface; palette: PSDL_Palette): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetSurfacePalette' {$ENDIF} {$ENDIF}; +{$endif} {** * Sets up a surface for directly accessing the pixels. @@ -139,13 +187,29 @@ function SDL_SetSurfacePalette(surface: PSDL_Surface; palette: PSDL_Palette): ci * SDL_UnlockSurface() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LockSurface_func = function(surface: PSDL_Surface): cint; cdecl; +Var + SDL_LockSurface : TSDL_LockSurface_func = Nil; +{$else} + function SDL_LockSurface(surface: PSDL_Surface): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LockSurface' {$ENDIF} {$ENDIF}; +{$endif} {** SDL_LockSurface() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UnlockSurface_proc = procedure(surface: PSDL_Surface); cdecl; +Var + SDL_UnlockSurface : TSDL_UnlockSurface_proc = Nil; +{$else} + procedure SDL_UnlockSurface(surface: PSDL_Surface); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UnlockSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Load a surface from a seekable SDL data stream (memory or file). @@ -157,8 +221,16 @@ procedure SDL_UnlockSurface(surface: PSDL_Surface); cdecl; * the new surface, or NULL if there was an error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LoadBMP_RW_func = function(src: PSDL_RWops; freesrc: cint): PSDL_Surface; cdecl; +Var + SDL_LoadBMP_RW : TSDL_LoadBMP_RW_func = Nil; +{$else} + function SDL_LoadBMP_RW(src: PSDL_RWops; freesrc: cint): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LoadBMP_RW' {$ENDIF} {$ENDIF}; +{$endif} {** * Load a surface from a file. @@ -182,8 +254,16 @@ function SDL_LoadBMP(_file: PAnsiChar): PSDL_Surface; * \return 0 if successful or -1 if there was an error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SaveBMP_RW_func = function(surface: PSDL_Surface; dst: PSDL_RWops; freedst: cint): cint; cdecl; +Var + SDL_SaveBMP_RW : TSDL_SaveBMP_RW_func = Nil; +{$else} + function SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SaveBMP_RW' {$ENDIF} {$ENDIF}; +{$endif} {** * Save a surface to a file. @@ -202,16 +282,32 @@ function SDL_SaveBMP(const surface: PSDL_Surface; const filename:AnsiString): ci * but the surface must be locked before directly accessing the pixels. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetSurfaceRLE_func = function(surface: PSDL_Surface; flag: cint): cint; cdecl; +Var + SDL_SetSurfaceRLE : TSDL_SetSurfaceRLE_func = Nil; +{$else} + function SDL_SetSurfaceRLE(surface: PSDL_Surface; flag: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetSurfaceRLE' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Returns whether the surface is RLE enabled * * \return SDL_TRUE if the surface is RLE enabled, or SDL_FALSE if the surface is NULL or not RLE enabled *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasSurfaceRLE_func = function(surface: PSDL_Surface): TSDL_Bool; cdecl; +Var + SDL_HasSurfaceRLE : TSDL_HasSurfaceRLE_func = Nil; +{$else} + function SDL_HasSurfaceRLE(surface: PSDL_Surface): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasSurfaceRLE' {$ENDIF} {$ENDIF}; +{$endif} {** * Sets the color key (transparent pixel) in a blittable surface. @@ -225,16 +321,32 @@ function SDL_SetSurfaceRLE(surface: PSDL_Surface; flag: cint): cint; cdecl; * You can pass SDL_RLEACCEL to enable RLE accelerated blits. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetColorKey_func = function(surface: PSDL_Surface; flag: cint; key: cuint32): cint; cdecl; +Var + SDL_SetColorKey : TSDL_SetColorKey_func = Nil; +{$else} + function SDL_SetColorKey(surface: PSDL_Surface; flag: cint; key: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetColorKey' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Returns whether the surface has a color key * * \return SDL_TRUE if the surface has a color key, or SDL_FALSE if the surface is NULL or has no color key *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasColorKey_func = function(surface: PSDL_Surface): TSDL_Bool; cdecl; +Var + SDL_HasColorKey : TSDL_HasColorKey_func = Nil; +{$else} + function SDL_HasColorKey(surface: PSDL_Surface): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasColorKey' {$ENDIF} {$ENDIF}; +{$endif} {** * Gets the color key (transparent pixel) in a blittable surface. @@ -247,8 +359,16 @@ function SDL_HasColorKey(surface: PSDL_Surface): TSDL_Bool; cdecl; * enabled. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetColorKey_func = function(surface: PSDL_Surface; key: pcuint32): cint; cdecl; +Var + SDL_GetColorKey : TSDL_GetColorKey_func = Nil; +{$else} + function SDL_GetColorKey(surface: PSDL_Surface; key: pcuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetColorKey' {$ENDIF} {$ENDIF}; +{$endif} {** * Set an additional color value used in blit operations. @@ -263,8 +383,16 @@ function SDL_GetColorKey(surface: PSDL_Surface; key: pcuint32): cint; cdecl; * SDL_GetSurfaceColorMod() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetSurfaceColorMod_func = function(surface: PSDL_Surface; r: cuint8; g: cuint8; b: cuint8): cint; cdecl; +Var + SDL_SetSurfaceColorMod : TSDL_SetSurfaceColorMod_func = Nil; +{$else} + function SDL_SetSurfaceColorMod(surface: PSDL_Surface; r: cuint8; g: cuint8; b: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetSurfaceColorMod' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the additional color value used in blit operations. @@ -279,8 +407,16 @@ function SDL_SetSurfaceColorMod(surface: PSDL_Surface; r: cuint8; g: cuint8; b: * SDL_SetSurfaceColorMod() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetSurfaceColorMod_func = function(surface: PSDL_Surface; r: pcuint8; g: pcuint8; b: pcuint8): cint; cdecl; +Var + SDL_GetSurfaceColorMod : TSDL_GetSurfaceColorMod_func = Nil; +{$else} + function SDL_GetSurfaceColorMod(surface: PSDL_Surface; r: pcuint8; g: pcuint8; b: pcuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetSurfaceColorMod' {$ENDIF} {$ENDIF}; +{$endif} {** * Set an additional alpha value used in blit operations. @@ -293,8 +429,16 @@ function SDL_GetSurfaceColorMod(surface: PSDL_Surface; r: pcuint8; g: pcuint8; b * SDL_GetSurfaceAlphaMod() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetSurfaceAlphaMod_func = function(surface: PSDL_Surface; alpha: cuint8): cint; cdecl; +Var + SDL_SetSurfaceAlphaMod : TSDL_SetSurfaceAlphaMod_func = Nil; +{$else} + function SDL_SetSurfaceAlphaMod(surface: PSDL_Surface; alpha: cuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetSurfaceAlphaMod' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the additional alpha value used in blit operations. @@ -307,8 +451,16 @@ function SDL_SetSurfaceAlphaMod(surface: PSDL_Surface; alpha: cuint8): cint; cde * SDL_SetSurfaceAlphaMod() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetSurfaceAlphaMod_func = function(surface: PSDL_Surface; alpha: pcuint8): cint; cdecl; +Var + SDL_GetSurfaceAlphaMod : TSDL_GetSurfaceAlphaMod_func = Nil; +{$else} + function SDL_GetSurfaceAlphaMod(surface: PSDL_Surface; alpha: pcuint8): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetSurfaceAlphaMod' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the blend mode used for blit operations. @@ -321,8 +473,16 @@ function SDL_GetSurfaceAlphaMod(surface: PSDL_Surface; alpha: pcuint8): cint; cd * SDL_GetSurfaceBlendMode() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetSurfaceBlendMode_func = function(surface: PSDL_Surface; blendMode: TSDL_BlendMode): cint; cdecl; +Var + SDL_SetSurfaceBlendMode : TSDL_SetSurfaceBlendMode_func = Nil; +{$else} + function SDL_SetSurfaceBlendMode(surface: PSDL_Surface; blendMode: TSDL_BlendMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetSurfaceBlendMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the blend mode used for blit operations. @@ -335,8 +495,16 @@ function SDL_SetSurfaceBlendMode(surface: PSDL_Surface; blendMode: TSDL_BlendMod * SDL_SetSurfaceBlendMode() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetSurfaceBlendMode_func = function(surface: PSDL_Surface; blendMode: PSDL_BlendMode): cint; cdecl; +Var + SDL_GetSurfaceBlendMode : TSDL_GetSurfaceBlendMode_func = Nil; +{$else} + function SDL_GetSurfaceBlendMode(surface: PSDL_Surface; blendMode: PSDL_BlendMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetSurfaceBlendMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Sets the clipping rectangle for the destination surface in a blit. @@ -352,8 +520,16 @@ function SDL_GetSurfaceBlendMode(surface: PSDL_Surface; blendMode: PSDL_BlendMod * and destination surfaces. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetClipRect_func = function(surface: PSDL_Surface; const rect: PSDL_Rect): TSDL_Bool; cdecl; +Var + SDL_SetClipRect : TSDL_SetClipRect_func = Nil; +{$else} + function SDL_SetClipRect(surface: PSDL_Surface; const rect: PSDL_Rect): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetClipRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Gets the clipping rectangle for the destination surface in a blit. @@ -362,14 +538,30 @@ function SDL_SetClipRect(surface: PSDL_Surface; const rect: PSDL_Rect): TSDL_Boo * with the correct values. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetClipRect_proc = procedure(surface: PSDL_Surface; rect: PSDL_Rect); cdecl; +Var + SDL_GetClipRect : TSDL_GetClipRect_proc = Nil; +{$else} + procedure SDL_GetClipRect(surface: PSDL_Surface; rect: PSDL_Rect); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetClipRect' {$ENDIF} {$ENDIF}; +{$endif} {* * Creates a new surface identical to the existing surface *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DuplicateSurface_func = function(surface: PSDL_Surface): PSDL_Surface; cdecl; +Var + SDL_DuplicateSurface : TSDL_DuplicateSurface_func = Nil; +{$else} + function SDL_DuplicateSurface(surface: PSDL_Surface): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DuplicateSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Creates a new surface of the specified format, and then copies and maps @@ -382,10 +574,26 @@ function SDL_DuplicateSurface(surface: PSDL_Surface): PSDL_Surface; cdecl; * surface. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ConvertSurface_func = function(src: PSDL_Surface; const fmt: PSDL_PixelFormat; flags: cuint32): PSDL_Surface; cdecl; +Var + SDL_ConvertSurface : TSDL_ConvertSurface_func = Nil; +{$else} + function SDL_ConvertSurface(src: PSDL_Surface; const fmt: PSDL_PixelFormat; flags: cuint32): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ConvertSurface' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ConvertSurfaceFormat_func = function(src: PSDL_Surface; pixel_format: cuint32; flags: cuint32): PSDL_Surface; cdecl; +Var + SDL_ConvertSurfaceFormat : TSDL_ConvertSurfaceFormat_func = Nil; +{$else} + function SDL_ConvertSurfaceFormat(src: PSDL_Surface; pixel_format: cuint32; flags: cuint32): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ConvertSurfaceFormat' {$ENDIF} {$ENDIF}; +{$endif} {** * Copy a block of pixels of one format to another format @@ -393,8 +601,16 @@ function SDL_ConvertSurfaceFormat(src: PSDL_Surface; pixel_format: cuint32; flag * 0 on success, or -1 if there was an error *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ConvertPixels_func = function(width: cint; height: cint; src_format: cuint32; const src: Pointer; src_pitch: cint; dst_format: cuint32; dst: Pointer; dst_pitch: cint): cint; cdecl; +Var + SDL_ConvertPixels : TSDL_ConvertPixels_func = Nil; +{$else} + function SDL_ConvertPixels(width: cint; height: cint; src_format: cuint32; const src: Pointer; src_pitch: cint; dst_format: cuint32; dst: Pointer; dst_pitch: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ConvertPixels' {$ENDIF} {$ENDIF}; +{$endif} {** * Performs a fast fill of the given rectangle with color. @@ -407,10 +623,26 @@ function SDL_ConvertPixels(width: cint; height: cint; src_format: cuint32; const * 0 on success, or -1 on error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FillRect_func = function(dst: PSDL_Surface; const rect: PSDL_Rect; color: cuint32): cint; cdecl; +Var + SDL_FillRect : TSDL_FillRect_func = Nil; +{$else} + function SDL_FillRect(dst: PSDL_Surface; const rect: PSDL_Rect; color: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FillRect' {$ENDIF} {$ENDIF}; +{$endif} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FillRects_func = function(dst: PSDL_Surface; const rects: PSDL_Rect; count: cint; color: cuint32): cint; cdecl; +Var + SDL_FillRects : TSDL_FillRects_func = Nil; +{$else} + function SDL_FillRects(dst: PSDL_Surface; const rects: PSDL_Rect; count: cint; color: cuint32): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FillRects' {$ENDIF} {$ENDIF}; +{$endif} {** * Performs a fast blit from the source surface to the destination surface. @@ -473,8 +705,16 @@ function SDL_FillRects(dst: PSDL_Surface; const rects: PSDL_Rect; count: cint; c (* SDL_surface.h uses #define to change all SDL_BlitSurface() calls into SDL_UpperBlit() calls. * * Since Pascal macro support is very limited, we workaround by outright pointing SDL_BlitSurface() to SDL_UpperBlit(). *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_BlitSurface_func = function(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_BlitSurface : TSDL_BlitSurface_func = Nil; +{$else} + function SDL_BlitSurface(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName name {$IF DEFINED(DELPHI) AND DEFINED(MACOS)} '_SDL_UpperBlit' {$ELSE} 'SDL_UpperBlit' {$IFEND}; +{$endif} {** @@ -482,16 +722,32 @@ function SDL_BlitSurface(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_ * rectangle validation and clipping before passing it to SDL_LowerBlit() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UpperBlit_func = function(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_UpperBlit : TSDL_UpperBlit_func = Nil; +{$else} + function SDL_UpperBlit(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpperBlit' {$ENDIF} {$ENDIF}; +{$endif} {** * This is a semi-private blit function and it performs low-level surface * blitting only. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LowerBlit_func = function(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_LowerBlit : TSDL_LowerBlit_func = Nil; +{$else} + function SDL_LowerBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LowerBlit' {$ENDIF} {$ENDIF}; +{$endif} {** * Perform a fast, low quality, stretch blit between two surfaces of the @@ -500,44 +756,98 @@ function SDL_LowerBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; * This function uses a static buffer, and is not thread-safe. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SoftStretch_func = function(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; const dstrect: PSDL_Surface): cint; cdecl; +Var + SDL_SoftStretch : TSDL_SoftStretch_func = Nil; +{$else} + function SDL_SoftStretch(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; const dstrect: PSDL_Surface): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SoftStretch' {$ENDIF} {$ENDIF}; +{$endif} (* SDL_surface.h uses #define to change all SDL_BlitSurfaceScaled() calls into SDL_UpperBlitScaled() calls. * * Since Pascal macro support is very limited, we workaround by outright pointing SDL_BlitSurfaceScaled() to SDL_UpperBlitScaled(). *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_BlitSurfaceScaled_func = function(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_BlitSurfaceScaled : TSDL_BlitSurfaceScaled_func = Nil; +{$else} + function SDL_BlitSurfaceScaled(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName name {$IF DEFINED(DELPHI) AND DEFINED(MACOS)} '_SDL_UpperBlitScaled' {$ELSE} 'SDL_UpperBlitScaled' {$IFEND}; +{$endif} {** * This is the public scaled blit function, SDL_BlitScaled(), and it performs * rectangle validation and clipping before passing it to SDL_LowerBlitScaled() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UpperBlitScaled_func = function(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_UpperBlitScaled : TSDL_UpperBlitScaled_func = Nil; +{$else} + function SDL_UpperBlitScaled(src: PSDL_Surface; const srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpperBlitScaled' {$ENDIF} {$ENDIF}; +{$endif} {** * This is a semi-private blit function and it performs low-level surface * scaled blitting only. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LowerBlitScaled_func = function(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; +Var + SDL_LowerBlitScaled : TSDL_LowerBlitScaled_func = Nil; +{$else} + function SDL_LowerBlitScaled(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_LowerBlitScaled' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Set the YUV conversion mode *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetYUVConversionMode_proc = procedure(mode: TSDL_YUV_CONVERSION_MODE); cdecl; +Var + SDL_SetYUVConversionMode : TSDL_SetYUVConversionMode_proc = Nil; +{$else} + procedure SDL_SetYUVConversionMode(mode: TSDL_YUV_CONVERSION_MODE); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetYUVConversionMode' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the YUV conversion mode *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetYUVConversionMode_func = function : TSDL_YUV_CONVERSION_MODE; cdecl; +Var + SDL_GetYUVConversionMode : TSDL_GetYUVConversionMode_func = Nil; +{$else} function SDL_GetYUVConversionMode: TSDL_YUV_CONVERSION_MODE; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetYUVConversionMode' {$ENDIF} {$ENDIF}; - +{$endif} {** * \brief Get the YUV conversion mode, returning the correct mode for the resolution when the current conversion mode is SDL_YUV_CONVERSION_AUTOMATIC *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetYUVConversionModeForResolution_func = function(width: cint; height: cint): TSDL_YUV_CONVERSION_MODE; cdecl; +Var + SDL_GetYUVConversionModeForResolution : TSDL_GetYUVConversionModeForResolution_func = Nil; +{$else} + function SDL_GetYUVConversionModeForResolution(width: cint; height: cint): TSDL_YUV_CONVERSION_MODE; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetYUVConversionModeForResolution' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlsystem.inc b/units/sdlsystem.inc index 0aa3cbd..7bcc6f0 100644 --- a/units/sdlsystem.inc +++ b/units/sdlsystem.inc @@ -15,8 +15,16 @@ type * * \since This function is available since SDL 2.0.4. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowsMessageHook_proc = procedure(callback: TSDL_WindowsMessageHook; userdata: Pointer); cdecl; +Var + SDL_SetWindowsMessageHook : TSDL_SetWindowsMessageHook_proc = Nil; +{$else} + procedure SDL_SetWindowsMessageHook(callback: TSDL_WindowsMessageHook; userdata: Pointer); cdecl; external SDL_LibName; +{$endif} {** * Get the D3D9 adapter index that matches the specified display index. @@ -31,8 +39,16 @@ procedure SDL_SetWindowsMessageHook(callback: TSDL_WindowsMessageHook; userdata: * * \since This function is available since SDL 2.0.1. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Direct3D9GetAdapterIndex_func = function(displayIndex:cint):cint; cdecl; +Var + SDL_Direct3D9GetAdapterIndex : TSDL_Direct3D9GetAdapterIndex_func = Nil; +{$else} + function SDL_Direct3D9GetAdapterIndex(displayIndex:cint):cint; cdecl; external SDL_LibName; +{$endif} type PIDirect3DDevice9 = type Pointer; @@ -51,8 +67,16 @@ type * * \since This function is available since SDL 2.0.1. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderGetD3D9Device_func = function(renderer:PSDL_Renderer):PIDirect3DDevice9; cdecl; +Var + SDL_RenderGetD3D9Device : TSDL_RenderGetD3D9Device_func = Nil; +{$else} + function SDL_RenderGetD3D9Device(renderer:PSDL_Renderer):PIDirect3DDevice9; cdecl; external SDL_LibName; +{$endif} {** * Get the D3D11 device associated with a renderer. @@ -66,8 +90,16 @@ function SDL_RenderGetD3D9Device(renderer:PSDL_Renderer):PIDirect3DDevice9; cdec * * \since This function is available since SDL 2.0.16. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderGetD3D11Device_func = function(renderer:PSDL_Renderer):PID3D11Device; cdecl; +Var + SDL_RenderGetD3D11Device : TSDL_RenderGetD3D11Device_func = Nil; +{$else} + function SDL_RenderGetD3D11Device(renderer:PSDL_Renderer):PID3D11Device; cdecl; external SDL_LibName; +{$endif} {** * Get the D3D12 device associated with a renderer. @@ -81,8 +113,16 @@ function SDL_RenderGetD3D11Device(renderer:PSDL_Renderer):PID3D11Device; cdecl; * * \since This function is available since SDL 2.24.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RenderGetD3D12Device_func = function(renderer:PSDL_Renderer):PID3D12Device; cdecl; +Var + SDL_RenderGetD3D12Device : TSDL_RenderGetD3D12Device_func = Nil; +{$else} + function SDL_RenderGetD3D12Device(renderer:PSDL_Renderer):PID3D12Device; cdecl; external SDL_LibName; +{$endif} {** * Get the DXGI Adapter and Output indices for the specified display index. @@ -102,8 +142,16 @@ function SDL_RenderGetD3D12Device(renderer:PSDL_Renderer):PID3D12Device; cdecl; * * \since This function is available since SDL 2.0.2. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DXGIGetOutputInfo_func = function(displayIndex: cint; adapterIndex, outputIndex: pcint): TSDL_Bool; cdecl; +Var + SDL_DXGIGetOutputInfo : TSDL_DXGIGetOutputInfo_func = Nil; +{$else} + function SDL_DXGIGetOutputInfo(displayIndex: cint; adapterIndex, outputIndex: pcint): TSDL_Bool; - external SDL_LibName; + external SDL_LibName; cdecl; +{$endif} {$ENDIF WIN32 OR WIN64} @@ -120,8 +168,16 @@ function SDL_DXGIGetOutputInfo(displayIndex: cint; adapterIndex, outputIndex: pc * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LinuxSetThreadPriority_func = function(threadID: cint64; priority: cint): cint; cdecl; +Var + SDL_LinuxSetThreadPriority : TSDL_LinuxSetThreadPriority_func = Nil; +{$else} + function SDL_LinuxSetThreadPriority(threadID: cint64; priority: cint): cint; cdecl; external SDL_LibName; +{$endif} {** * Sets the priority (not nice level) and scheduling policy for a thread. @@ -136,8 +192,16 @@ function SDL_LinuxSetThreadPriority(threadID: cint64; priority: cint): cint; cde * * \since This function is available since SDL 2.0.18. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_LinuxSetThreadPriorityAndPolicy_func = function(threadID: cint64; sdlPriority, schedPolicy: cint): cint; cdecl; +Var + SDL_LinuxSetThreadPriorityAndPolicy : TSDL_LinuxSetThreadPriorityAndPolicy_func = Nil; +{$else} + function SDL_LinuxSetThreadPriorityAndPolicy(threadID: cint64; sdlPriority, schedPolicy: cint): cint; cdecl; external SDL_LibName; +{$endif} {$ENDIF LINUX} @@ -168,8 +232,16 @@ type * * \sa SDL_iPhoneSetEventPump *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iPhoneSetAnimationCallback_func = function(window: PSDL_Window; interval: cint; callback: TSDL_iPhoneAnimationCallback; callbackParam: Pointer); cdecl; +Var + SDL_iPhoneSetAnimationCallback : TSDL_iPhoneSetAnimationCallback_func = Nil; +{$else} + function SDL_iPhoneSetAnimationCallback(window: PSDL_Window; interval: cint; callback: TSDL_iPhoneAnimationCallback; callbackParam: Pointer); cdecl; external SDL_LibName; +{$endif} {** * Use this function to enable or disable the SDL event pump on Apple iOS. @@ -182,8 +254,16 @@ function SDL_iPhoneSetAnimationCallback(window: PSDL_Window; interval: cint; cal * * \sa SDL_iPhoneSetAnimationCallback *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_iPhoneSetEventPump_proc = procedure(enabled: TSDL_Bool); cdecl; +Var + SDL_iPhoneSetEventPump : TSDL_iPhoneSetEventPump_proc = Nil; +{$else} + procedure SDL_iPhoneSetEventPump(enabled: TSDL_Bool); cdecl; external SDL_LibName; +{$endif} {$ENDIF __IPHONEOS__} @@ -207,8 +287,16 @@ procedure SDL_iPhoneSetEventPump(enabled: TSDL_Bool); cdecl; * * \sa SDL_AndroidGetActivity *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidGetJNIEnv_func = function(): Pointer; cdecl; +Var + SDL_AndroidGetJNIEnv : TSDL_AndroidGetJNIEnv_func = Nil; +{$else} + function SDL_AndroidGetJNIEnv(): Pointer; cdecl; external SDL_LibName; +{$endif} (** * Retrieve the Java instance of the Android activity class. @@ -230,8 +318,16 @@ function SDL_AndroidGetJNIEnv(): Pointer; cdecl; * * \sa SDL_AndroidGetJNIEnv *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidGetActivity_func = function(): Pointer; cdecl; +Var + SDL_AndroidGetActivity : TSDL_AndroidGetActivity_func = Nil; +{$else} + function SDL_AndroidGetActivity(): Pointer; cdecl; external SDL_LibName; +{$endif} {** * Query Android API level of the current device. @@ -266,8 +362,16 @@ function SDL_AndroidGetActivity(): Pointer; cdecl; * * \since This function is available since SDL 2.0.12. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetAndroidSDKVersion_func = function(): cint; cdecl; +Var + SDL_GetAndroidSDKVersion : TSDL_GetAndroidSDKVersion_func = Nil; +{$else} + function SDL_GetAndroidSDKVersion(): cint; cdecl; external SDL_LibName; +{$endif} {** * Query if the application is running on Android TV. @@ -276,8 +380,16 @@ function SDL_GetAndroidSDKVersion(): cint; cdecl; * * \since This function is available since SDL 2.0.8. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsAndroidTV_func = function(): TSDL_Bool; cdecl; +Var + SDL_IsAndroidTV : TSDL_IsAndroidTV_func = Nil; +{$else} + function SDL_IsAndroidTV(): TSDL_Bool; cdecl; external SDL_LibName; +{$endif} {** * Query if the application is running on a Chromebook. @@ -286,8 +398,16 @@ function SDL_IsAndroidTV(): TSDL_Bool; cdecl; * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsChromebook_func = function(): TSDL_Bool; cdecl; +Var + SDL_IsChromebook : TSDL_IsChromebook_func = Nil; +{$else} + function SDL_IsChromebook(): TSDL_Bool; cdecl; external SDL_LibName; +{$endif} {** * Query if the application is running on a Samsung DeX docking station. @@ -296,16 +416,32 @@ function SDL_IsChromebook(): TSDL_Bool; cdecl; * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsDeXMode_func = function(): TSDL_Bool; cdecl; +Var + SDL_IsDeXMode : TSDL_IsDeXMode_func = Nil; +{$else} + function SDL_IsDeXMode(): TSDL_Bool; cdecl; external SDL_LibName; +{$endif} {** * Trigger the Android system back button behavior. * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidBackButton_proc = procedure(); cdecl; +Var + SDL_AndroidBackButton : TSDL_AndroidBackButton_proc = Nil; +{$else} + procedure SDL_AndroidBackButton(); cdecl; external SDL_LibName; +{$endif} {** See the official Android developer guide for more information: @@ -331,8 +467,16 @@ const * * \sa SDL_AndroidGetExternalStorageState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidGetInternalStoragePath_func = function(): PAnsiChar; cdecl; +Var + SDL_AndroidGetInternalStoragePath : TSDL_AndroidGetInternalStoragePath_func = Nil; +{$else} + function SDL_AndroidGetInternalStoragePath(): PAnsiChar; cdecl; external SDL_LibName; +{$endif} {** * Get the current state of external storage. @@ -349,8 +493,16 @@ function SDL_AndroidGetInternalStoragePath(): PAnsiChar; cdecl; * * \sa SDL_AndroidGetExternalStoragePath *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidGetExternalStorageState_func = function(): cint; cdecl; +Var + SDL_AndroidGetExternalStorageState : TSDL_AndroidGetExternalStorageState_func = Nil; +{$else} + function SDL_AndroidGetExternalStorageState(): cint; cdecl; external SDL_LibName; +{$endif} {** * Get the path used for external storage for this application. @@ -368,8 +520,16 @@ function SDL_AndroidGetExternalStorageState(): cint; cdecl; * * \sa SDL_AndroidGetExternalStorageState *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidGetExternalStoragePath_func = function(): PAnsiChar; cdecl; +Var + SDL_AndroidGetExternalStoragePath : TSDL_AndroidGetExternalStoragePath_func = Nil; +{$else} + function SDL_AndroidGetExternalStoragePath(): PAnsiChar; cdecl; external SDL_LibName; +{$endif} {** * Request permissions at runtime. @@ -384,8 +544,16 @@ function SDL_AndroidGetExternalStoragePath(): PAnsiChar; cdecl; * * \since This function is available since SDL 2.0.14. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidRequestPermission_func = function(const permission: PAnsiChar): TSDL_Bool; cdecl; +Var + SDL_AndroidRequestPermission : TSDL_AndroidRequestPermission_func = Nil; +{$else} + function SDL_AndroidRequestPermission(const permission: PAnsiChar): TSDL_Bool; cdecl; external SDL_LibName; +{$endif} {** * Shows an Android toast notification. @@ -410,8 +578,16 @@ function SDL_AndroidRequestPermission(const permission: PAnsiChar): TSDL_Bool; c * * \since This function is available since SDL 2.0.16. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidShowToast_func = function(const message: PAnsiChar; duration, gravity, xoffset, yoffset: cint): cint; cdecl; +Var + SDL_AndroidShowToast : TSDL_AndroidShowToast_func = Nil; +{$else} + function SDL_AndroidShowToast(const message: PAnsiChar; duration, gravity, xoffset, yoffset: cint): cint; cdecl; external SDL_LibName; +{$endif} {** * Send a user command to SDLActivity. @@ -423,8 +599,16 @@ function SDL_AndroidShowToast(const message: PAnsiChar; duration, gravity, xoffs * * \since This function is available since SDL 2.0.22. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AndroidSendMessage_func = function(command: cUint32; param: cint): cint; cdecl; +Var + SDL_AndroidSendMessage : TSDL_AndroidSendMessage_func = Nil; +{$else} + function SDL_AndroidSendMessage(command: cUint32; param: cint): cint; cdecl; external SDL_LibName; +{$endif} {$ENDIF ANDROID} @@ -477,8 +661,16 @@ Type * SDL_WinRT_Path for more information on which path types are * supported where. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WinRTGetFSPathUNICODE_func = function(pathT +Var + SDL_WinRTGetFSPathUNICODE : TSDL_WinRTGetFSPathUNICODE_func = Nil; +{$else} + function SDL_WinRTGetFSPathUNICODE(pathType :TSDL_WinRT_Path):PWideChar; cdecl; external SDL_LibName; +{$endif} {** @@ -496,8 +688,16 @@ function SDL_WinRTGetFSPathUNICODE(pathType :TSDL_WinRT_Path):PWideChar; * SDL_WinRT_Path for more information on which path types are * supported where. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WinRTGetFSPathUTF8_func = function(pathT +Var + SDL_WinRTGetFSPathUTF8 : TSDL_WinRTGetFSPathUTF8_func = Nil; +{$else} + function SDL_WinRTGetFSPathUTF8(pathType :TSDL_WinRT_Path):PChar; cdecl; external SDL_LibName; +{$endif} {** @@ -507,8 +707,16 @@ function SDL_WinRTGetFSPathUTF8(pathType :TSDL_WinRT_Path):PChar; * * \since This function is available since SDL 2.0.8. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WinRTGetDeviceFamily_func = function(): TS +Var + SDL_WinRTGetDeviceFamily : TSDL_WinRTGetDeviceFamily_func = Nil; +{$else} + function SDL_WinRTGetDeviceFamily(): TSDL_WinRT_DeviceFamily; cdecl; external SDL_LibName; +{$endif} {$ENDIF __WINRT__} @@ -521,10 +729,20 @@ function SDL_WinRTGetDeviceFamily(): TSDL_WinRT_DeviceFamily; * * \since This function is available since SDL 2.0.9. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsTablet_func = function(): TSDL_Bool; cdecl; +Var + SDL_IsTablet : TSDL_IsTablet_func = Nil; +{$else} + function SDL_IsTablet(): TSDL_Bool; cdecl; external SDL_LibName; +{$endif} - + {$ifdef SDL_RUNTIME_LOADING} +// TODO: Portieren +{$else} { Functions used by iOS application delegates to notify SDL about state changes } procedure SDL_OnApplicationWillTerminate(); cdecl; external SDL_LibName; procedure SDL_OnApplicationDidReceiveMemoryWarning(); cdecl; external SDL_LibName; @@ -535,3 +753,4 @@ procedure SDL_OnApplicationDidBecomeActive(); cdecl; external SDL_LibName; {$IFDEF __IPHONEOS__} procedure SDL_OnApplicationDidChangeStatusBarOrientation(); cdecl; external SDL_LibName; {$ENDIF} +{$endif} diff --git a/units/sdlsyswm.inc b/units/sdlsyswm.inc index 69bcc65..8d0755b 100644 --- a/units/sdlsyswm.inc +++ b/units/sdlsyswm.inc @@ -357,5 +357,13 @@ type * * \since This function is available since SDL 2.0.0. *) +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowWMInfo_func = function(window: PSDL_Window; info: PSDL_SysWMinfo): TSDL_bool; cdecl; +Var + SDL_GetWindowWMInfo : TSDL_GetWindowWMInfo_func = Nil; +{$else} + function SDL_GetWindowWMInfo(window: PSDL_Window; info: PSDL_SysWMinfo): TSDL_bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowWMInfo' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlthread.inc b/units/sdlthread.inc index bd27ec4..05a15e7 100644 --- a/units/sdlthread.inc +++ b/units/sdlthread.inc @@ -91,25 +91,47 @@ type TpfnSDL_CurrentEndThread = procedure(code: cuint); cdecl; +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateThread_func = function(fn: TSDL_ThreadFunction; name: PAnsiChar; + data: Pointer; + pfnBeginThread: TpfnSDL_CurrentBeginThread; + pfnEndThread: TpfnSDL_CurrentEndThread): PSDL_Thread; cdecl; +Var + SDL_CreateThread : TSDL_CreateThread_func = Nil; +{$else} + function SDL_CreateThread(fn: TSDL_ThreadFunction; name: PAnsiChar; data: Pointer; pfnBeginThread: TpfnSDL_CurrentBeginThread; pfnEndThread: TpfnSDL_CurrentEndThread): PSDL_Thread; cdecl; overload; external SDL_LibName; +{$endif} + +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateThreadWithStackSize_func = function(fn: TSDL_ThreadFunction; + name: PAnsiChar; const stacksize: csize_t; data: Pointer; + pfnBeginThread: TpfnSDL_CurrentBeginThread; + pfnEndThread: TpfnSDL_CurrentEndThread): PSDL_Thread; cdecl; +Var + SDL_CreateThreadWithStackSize : TSDL_CreateThreadWithStackSize_func = Nil; +{$else} function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; name: PAnsiChar; const stacksize: csize_t; data: Pointer; pfnBeginThread: TpfnSDL_CurrentBeginThread; pfnEndThread: TpfnSDL_CurrentEndThread): PSDL_Thread; cdecl; overload; external SDL_LibName; +{$endif} { SDL2-For-Pascal: #note : In the C header are two versions of these macro functions. One for SDL's dynamic API and one without. We can go with this for the moment. Improvement surely possible. } -function SDL_CreateThread(fn: TSDL_ThreadFunction; name: PAnsiChar; +function SDL_CreateThread2(fn: TSDL_ThreadFunction; name: PAnsiChar; data: Pointer): PSDL_Thread; overload; -function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; name: PAnsiChar; +function SDL_CreateThreadWithStackSize2(fn: TSDL_ThreadFunction; name: PAnsiChar; const stacksize: csize_t; data: Pointer): PSDL_Thread; overload; @@ -145,9 +167,18 @@ function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; name: PAnsiChar; * it (truncate, etc), but the original string contents will be available * from SDL_GetThreadName(). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateThread_func = function(fn: TSDL_ThreadFunction; name: PAnsiChar; + data: Pointer): PSDL_Thread; cdecl; +Var + SDL_CreateThread : TSDL_CreateThread_func = Nil; +{$else} + function SDL_CreateThread(fn: TSDL_ThreadFunction; name: PAnsiChar; data: Pointer): PSDL_Thread; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateThread' {$ENDIF} {$ENDIF}; +{$endif} {** * Create a new thread with a specific stack size. @@ -192,9 +223,18 @@ function SDL_CreateThread(fn: TSDL_ThreadFunction; name: PAnsiChar; * * \sa SDL_WaitThread *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateThreadWithStackSize_func = function(fn: TSDL_ThreadFunction; name: PAnsiChar; + stacksize: csize_t; data: Pointer): PSDL_Thread; cdecl; +Var + SDL_CreateThreadWithStackSize : TSDL_CreateThreadWithStackSize_func = Nil; +{$else} + function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; name: PAnsiChar; stacksize: csize_t; data: Pointer): PSDL_Thread; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateThreadWithStackSize' {$ENDIF} {$ENDIF}; +{$endif} {$ENDIF} @@ -213,8 +253,16 @@ function SDL_CreateThreadWithStackSize(fn: TSDL_ThreadFunction; name: PAnsiChar; * * \sa SDL_CreateThread *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetThreadName_func = function(thread: PSDL_Thread): PAnsiChar; cdecl; +Var + SDL_GetThreadName : TSDL_GetThreadName_func = Nil; +{$else} + function SDL_GetThreadName(thread: PSDL_Thread): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetThreadName' {$ENDIF}{$ENDIF}; +{$endif} {** * Get the thread identifier for the current thread. @@ -232,9 +280,15 @@ function SDL_GetThreadName(thread: PSDL_Thread): PAnsiChar; cdecl; * * \sa SDL_GetThreadID *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ThreadID_func = function (): TSDL_ThreadID; cdecl; +Var + SDL_ThreadID : TSDL_ThreadID_func = Nil; +{$else} function SDL_ThreadID: TSDL_ThreadID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ThreadID' {$ENDIF}{$ENDIF}; - +{$endif} {** * Get the thread identifier for the specified thread. * @@ -250,8 +304,16 @@ function SDL_ThreadID: TSDL_ThreadID; cdecl; * * \sa SDL_ThreadID *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetThreadID_func = function(thread: PSDL_Thread): TSDL_ThreadID; cdecl; +Var + SDL_GetThreadID : TSDL_GetThreadID_func = Nil; +{$else} + function SDL_GetThreadID(thread: PSDL_Thread): TSDL_ThreadID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetThreadID' {$ENDIF}{$ENDIF}; +{$endif} {** * Set the priority for the current thread. @@ -266,8 +328,16 @@ function SDL_GetThreadID(thread: PSDL_Thread): TSDL_ThreadID; cdecl; * * \since This function is available since SDL 2.0.0. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetThreadPriority_func = function(priority: TSDL_ThreadPriority): cint; cdecl; +Var + SDL_SetThreadPriority : TSDL_SetThreadPriority_func = Nil; +{$else} + function SDL_SetThreadPriority(priority: TSDL_ThreadPriority): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetThreadPriority' {$ENDIF}{$ENDIF}; +{$endif} {** * Wait for a thread to finish. @@ -302,8 +372,16 @@ function SDL_SetThreadPriority(priority: TSDL_ThreadPriority): cint; cdecl; * \sa SDL_CreateThread * \sa SDL_DetachThread *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_WaitThread_proc = procedure(thread: PSDL_Thread; status: pcint); cdecl; +Var + SDL_WaitThread : TSDL_WaitThread_proc = Nil; +{$else} + procedure SDL_WaitThread(thread: PSDL_Thread; status: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_WaitThread' {$ENDIF}{$ENDIF}; +{$endif} {** * Let a thread clean up on exit without intervention. @@ -339,8 +417,16 @@ procedure SDL_WaitThread(thread: PSDL_Thread; status: pcint); cdecl; * \sa SDL_CreateThread * \sa SDL_WaitThread *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DetachThread_proc = procedure(thread:PSDL_Thread); cdecl; +Var + SDL_DetachThread : TSDL_DetachThread_proc = Nil; +{$else} + procedure SDL_DetachThread(thread:PSDL_Thread); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DetachThread' {$ENDIF}{$ENDIF}; +{$endif} {** * Create a piece of thread-local storage. @@ -355,8 +441,15 @@ procedure SDL_DetachThread(thread:PSDL_Thread); cdecl; * \sa SDL_TLSGet * \sa SDL_TLSSet *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_TLSCreate_func = function : TSDL_TLSID; cdecl; +Var + SDL_TLSCreate : TSDL_TLSCreate_func = Nil; +{$else} function SDL_TLSCreate: TSDL_TLSID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_TLSCreate' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the current thread's value associated with a thread local storage ID. @@ -370,8 +463,16 @@ function SDL_TLSCreate: TSDL_TLSID; cdecl; * \sa SDL_TLSCreate * \sa SDL_TLSSet *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_TLSGet_func = function(id: TSDL_TLSID): Pointer; cdecl; +Var + SDL_TLSGet : TSDL_TLSGet_func = Nil; +{$else} + function SDL_TLSGet(id: TSDL_TLSID): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_TLSGet' {$ENDIF} {$ENDIF}; +{$endif} type { SDL2-For-Pascal: This function pointer is introduced to specifiy the @@ -405,14 +506,29 @@ type * \sa SDL_TLSCreate * \sa SDL_TLSGet *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_TLSSet_func = function(id: TSDL_TLSID; const value: Pointer; destructor_: TTLSDestructor): cint; cdecl; +Var + SDL_TLSSet : TSDL_TLSSet_func = Nil; +{$else} + function SDL_TLSSet(id: TSDL_TLSID; const value: Pointer; destructor_: TTLSDestructor): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_TLSSet' {$ENDIF} {$ENDIF}; +{$endif} {** * Cleanup all TLS data for this thread. * * \since This function is available since SDL 2.0.16. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_TLSCleanup_proc = procedure (); cdecl; +Var + SDL_TLSCleanup : TSDL_TLSCleanup_proc = Nil; +{$else} procedure SDL_TLSCleanup; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_TLSCleanup' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdltimer.inc b/units/sdltimer.inc index ea336c9..7fab232 100644 --- a/units/sdltimer.inc +++ b/units/sdltimer.inc @@ -5,8 +5,15 @@ * * This value wraps if the program runs for more than ~49 days. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetTicks_func = function : cuint32; cdecl; +Var + SDL_GetTicks : TSDL_GetTicks_func = Nil; +{$else} function SDL_GetTicks: cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTicks' {$ENDIF} {$ENDIF}; + {$endif} {** * Get the number of milliseconds since SDL library initialization. @@ -16,8 +23,15 @@ function SDL_GetTicks: cuint32; cdecl; * the 32-bit overflow every ~49 days that SDL_GetTicks() suffers from. 64-bit * values from this function can be safely compared directly. *} -function SDL_GetTicks64: cuint64; cdecl; + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetTicks64_func = function : cuint64; cdecl; + Var + SDL_GetTicks64 : TSDL_GetTicks64_func = Nil; + {$else} + function SDL_GetTicks64: cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTicks64' {$ENDIF} {$ENDIF}; + {$endif} {** * \brief Compare SDL ticks values, and return true if A has passed B @@ -35,20 +49,42 @@ function SDL_TICKS_PASSED(const A, B: cint32): Boolean; {** * Get the current value of the high resolution counter *} + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetPerformanceCounter_func = function : cuint64; cdecl; + Var + SDL_GetPerformanceCounter : TSDL_GetPerformanceCounter_func = Nil; + {$else} function SDL_GetPerformanceCounter: cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPerformanceCounter' {$ENDIF} {$ENDIF}; + {$endif} {** * Get the count per second of the high resolution counter *} + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetPerformanceFrequency_func = function : cuint64; cdecl; + Var + SDL_GetPerformanceFrequency : TSDL_GetPerformanceFrequency_func = Nil; + {$else} function SDL_GetPerformanceFrequency: cuint64; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPerformanceFrequency' {$ENDIF} {$ENDIF}; + {$endif} {** * Wait a specified number of milliseconds before returning. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_Delay_proc = procedure(ms: cuint32); cdecl; +Var + SDL_Delay : TSDL_Delay_proc = Nil; +{$else} + procedure SDL_Delay(ms: cuint32); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_Delay' {$ENDIF} {$ENDIF}; +{$endif} type {** @@ -75,8 +111,16 @@ type * * A timer ID, or NULL when an error occurs. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_AddTimer_func = function(interval: cuint32; callback: TSDL_TimerCallback; param: Pointer): TSDL_TimerID; cdecl; +Var + SDL_AddTimer : TSDL_AddTimer_func = Nil; +{$else} + function SDL_AddTimer(interval: cuint32; callback: TSDL_TimerCallback; param: Pointer): TSDL_TimerID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_AddTimer' {$ENDIF} {$ENDIF}; +{$endif} {** * Remove a timer knowing its ID. @@ -85,5 +129,13 @@ function SDL_AddTimer(interval: cuint32; callback: TSDL_TimerCallback; param: Po * * It is not safe to remove a timer multiple times. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RemoveTimer_func = function(id: TSDL_TimerID): Boolean; cdecl; +Var + SDL_RemoveTimer : TSDL_RemoveTimer_func = Nil; +{$else} + function SDL_RemoveTimer(id: TSDL_TimerID): Boolean; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RemoveTimer' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdltouch.inc b/units/sdltouch.inc index bcb1079..c1e909f 100644 --- a/units/sdltouch.inc +++ b/units/sdltouch.inc @@ -40,14 +40,30 @@ const {** * Get the number of registered touch devices. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumTouchDevices_func = function(): cint; cdecl; +Var + SDL_GetNumTouchDevices : TSDL_GetNumTouchDevices_func = Nil; +{$else} + function SDL_GetNumTouchDevices(): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumTouchDevices' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the touch ID with the given index, or 0 if the index is invalid. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetTouchDevice_func = function(index: cint): TSDL_TouchID; cdecl; +Var + SDL_GetTouchDevice : TSDL_GetTouchDevice_func = Nil; +{$else} + function SDL_GetTouchDevice(index: cint): TSDL_TouchID; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchDevice' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the touch device name as reported from the driver, @@ -55,26 +71,58 @@ function SDL_GetTouchDevice(index: cint): TSDL_TouchID; cdecl; * * \since This function is available since SDL 2.0.22. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetTouchName_func = function(index: cint): PAnsiChar; cdecl; +Var + SDL_GetTouchName : TSDL_GetTouchName_func = Nil; +{$else} + function SDL_GetTouchName(index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchName' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the type of the given touch device. * * \since This function is available since SDL 2.0.10. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetTouchDeviceType_func = function(touchID: TSDL_TouchID): TSDL_TouchDeviceType; cdecl; +Var + SDL_GetTouchDeviceType : TSDL_GetTouchDeviceType_func = Nil; +{$else} + function SDL_GetTouchDeviceType(touchID: TSDL_TouchID): TSDL_TouchDeviceType; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchDeviceType' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the number of active fingers for a given touch device. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumTouchFingers_func = function(touchID: TSDL_TouchID): cint; cdecl; +Var + SDL_GetNumTouchFingers : TSDL_GetNumTouchFingers_func = Nil; +{$else} + function SDL_GetNumTouchFingers(touchID: TSDL_TouchID): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumTouchFingers' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the finger object of the given touch, with the given index. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetTouchFinger_func = function(touchID: TSDL_TouchID; index: cint): PSDL_Finger; cdecl; +Var + SDL_GetTouchFinger : TSDL_GetTouchFinger_func = Nil; +{$else} + function SDL_GetTouchFinger(touchID: TSDL_TouchID; index: cint): PSDL_Finger; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchFinger' {$ENDIF} {$ENDIF}; +{$endif} diff --git a/units/sdlversion.inc b/units/sdlversion.inc index a187840..1b25ed4 100644 --- a/units/sdlversion.inc +++ b/units/sdlversion.inc @@ -102,8 +102,16 @@ function SDL_VERSION_ATLEAST(X,Y,Z: cuint8): Boolean; * * SDL_VERSION *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetVersion_proc = procedure(ver: PSDL_Version); cdecl; +Var + SDL_GetVersion : TSDL_GetVersion_proc = Nil; +{$else} + procedure SDL_GetVersion(ver: PSDL_Version); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetVersion' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the code revision of SDL that is linked against your program. @@ -112,8 +120,15 @@ procedure SDL_GetVersion(ver: PSDL_Version); cdecl; * exact revision of the SDL library in use, and is only useful in comparing * against other revisions. It is NOT an incrementing number. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRevision_func = function (): PAnsiChar; cdecl; +Var + SDL_GetRevision : TSDL_GetRevision_func = Nil; +{$else} function SDL_GetRevision: PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRevision' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the revision number of SDL that is linked against your program. @@ -122,5 +137,13 @@ function SDL_GetRevision: PAnsiChar; cdecl; * library in use. It is an incrementing number based on commits to * hg.libsdl.org. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRevisionNumber_func = function (): cint; cdecl; +Var + SDL_GetRevisionNumber : TSDL_GetRevisionNumber_func = Nil; +{$else} function SDL_GetRevisionNumber: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRevisionNumber' {$ENDIF} {$ENDIF}; +{$endif} + diff --git a/units/sdlvideo.inc b/units/sdlvideo.inc index 9c39010..bfda469 100644 --- a/units/sdlvideo.inc +++ b/units/sdlvideo.inc @@ -241,10 +241,15 @@ const * * SDL_GetVideoDriver() *} - + {$ifdef SDL_RUNTIME_LOADING} + Type + TSDL_GetNumVideoDrivers_func =function : cint; cdecl; + Var + SDL_GetNumVideoDrivers : TSDL_GetNumVideoDrivers_func = Nil; + {$else} function SDL_GetNumVideoDrivers: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumVideoDrivers' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the name of a built in video driver. * @@ -254,8 +259,16 @@ function SDL_GetNumVideoDrivers: cint; cdecl; * SDL_GetNumVideoDrivers() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetVideoDriver_func = function(index: cint): PAnsiChar; cdecl; +Var + SDL_GetVideoDriver : TSDL_GetVideoDriver_func = Nil; +{$else} + function SDL_GetVideoDriver(index: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetVideoDriver' {$ENDIF} {$ENDIF}; +{$endif} {** * Initialize the video subsystem, optionally specifying a video driver. @@ -272,8 +285,16 @@ function SDL_GetVideoDriver(index: cint): PAnsiChar; cdecl; * SDL_VideoQuit() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_VideoInit_func = function(const driver_name: PAnsiChar): cint; cdecl; +Var + SDL_VideoInit : TSDL_VideoInit_func = Nil; +{$else} + function SDL_VideoInit(const driver_name: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_VideoInit' {$ENDIF} {$ENDIF}; +{$endif} {** * Shuts down the video subsystem. @@ -282,9 +303,15 @@ function SDL_VideoInit(const driver_name: PAnsiChar): cint; cdecl; * * SDL_VideoInit() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_VideoQuit_proc =Procedure ; cdecl; +Var + SDL_VideoQuit : TSDL_VideoQuit_proc = Nil; +{$else} procedure SDL_VideoQuit; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_VideoQuit' {$ENDIF} {$ENDIF}; - + {$endif} {** * Returns the name of the currently initialized video driver. * @@ -294,19 +321,31 @@ procedure SDL_VideoQuit; cdecl; * SDL_GetNumVideoDrivers() * SDL_GetVideoDriver() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetCurrentVideoDriver_func = function : PAnsiChar; cdecl; +Var + SDL_GetCurrentVideoDriver : TSDL_GetCurrentVideoDriver_func = Nil; +{$else} function SDL_GetCurrentVideoDriver: PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCurrentVideoDriver' {$ENDIF} {$ENDIF}; - +{$endif} {** * Returns the number of available video displays. * * SDL_GetDisplayBounds() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumVideoDisplays_func =function : cint; cdecl; +Var + SDL_GetNumVideoDisplays : TSDL_GetNumVideoDisplays_func = Nil; +{$else} function SDL_GetNumVideoDisplays: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumVideoDisplays' {$ENDIF} {$ENDIF}; - +{$endif} {** * Get the name of a display in UTF-8 encoding * @@ -315,8 +354,16 @@ function SDL_GetNumVideoDisplays: cint; cdecl; * SDL_GetNumVideoDisplays() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayName_func = function(displayIndex: cint): PAnsiChar; cdecl; +Var + SDL_GetDisplayName : TSDL_GetDisplayName_func = Nil; +{$else} + function SDL_GetDisplayName(displayIndex: cint): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayName' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the desktop area represented by a display, with the primary @@ -327,8 +374,16 @@ function SDL_GetDisplayName(displayIndex: cint): PAnsiChar; cdecl; * SDL_GetNumVideoDisplays() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayBounds_func = function(displayIndex: cint; rect: PSDL_Rect): cint; cdecl; +Var + SDL_GetDisplayBounds : TSDL_GetDisplayBounds_func = Nil; +{$else} + function SDL_GetDisplayBounds(displayIndex: cint; rect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayBounds' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the usable desktop area represented by a display, with the @@ -347,8 +402,16 @@ function SDL_GetDisplayBounds(displayIndex: cint; rect: PSDL_Rect): cint; cdecl; * \sa SDL_GetDisplayBounds() * \sa SDL_GetNumVideoDisplays() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayUsableBounds_func = function(displayIndex: cint; rect: PSDL_Rect): cint; cdecl; +Var + SDL_GetDisplayUsableBounds : TSDL_GetDisplayUsableBounds_func = Nil; +{$else} + function SDL_GetDisplayUsableBounds(displayIndex: cint; rect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayUsableBounds' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the dots/pixels-per-inch for a display @@ -360,8 +423,16 @@ function SDL_GetDisplayUsableBounds(displayIndex: cint; rect: PSDL_Rect): cint; * * \sa SDL_GetNumVideoDisplays() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayDPI_func = function(displayIndex: cint; ddpi, hdpi, vdpi: pcfloat): cint; cdecl; +Var + SDL_GetDisplayDPI : TSDL_GetDisplayDPI_func = Nil; +{$else} + function SDL_GetDisplayDPI(displayIndex: cint; ddpi, hdpi, vdpi: pcfloat): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayDPI' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the orientation of a display @@ -370,8 +441,16 @@ function SDL_GetDisplayDPI(displayIndex: cint; ddpi, hdpi, vdpi: pcfloat): cint; * * \sa SDL_GetNumVideoDisplays() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayOrientation_func = function(displayIndex: cint): TSDL_DisplayOrientation; cdecl; +Var + SDL_GetDisplayOrientation : TSDL_GetDisplayOrientation_func = Nil; +{$else} + function SDL_GetDisplayOrientation(displayIndex: cint): TSDL_DisplayOrientation; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayOrientation' {$ENDIF} {$ENDIF}; +{$endif} {** * Returns the number of available display modes. @@ -379,8 +458,16 @@ function SDL_GetDisplayOrientation(displayIndex: cint): TSDL_DisplayOrientation; * SDL_GetDisplayMode() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetNumDisplayModes_func = function(displayIndex: cint): cint; cdecl; +Var + SDL_GetNumDisplayModes : TSDL_GetNumDisplayModes_func = Nil; +{$else} + function SDL_GetNumDisplayModes(displayIndex: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumDisplayModes' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill in information about a specific display mode. @@ -394,22 +481,46 @@ function SDL_GetNumDisplayModes(displayIndex: cint): cint; cdecl; * SDL_GetNumDisplayModes() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDisplayMode_func = function(displayIndex: cint; modeIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; +Var + SDL_GetDisplayMode : TSDL_GetDisplayMode_func = Nil; +{$else} + function SDL_GetDisplayMode(displayIndex: cint; modeIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDisplayMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill in information about the desktop display mode. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetDesktopDisplayMode_func = function(displayIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; +Var + SDL_GetDesktopDisplayMode : TSDL_GetDesktopDisplayMode_func = Nil; +{$else} + function SDL_GetDesktopDisplayMode(displayIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetDesktopDisplayMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill in information about the current display mode. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetCurrentDisplayMode_func = function(displayIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; +Var + SDL_GetCurrentDisplayMode : TSDL_GetCurrentDisplayMode_func = Nil; +{$else} + function SDL_GetCurrentDisplayMode(displayIndex: cint; mode: PSDL_DisplayMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetCurrentDisplayIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the closest match to the requested display mode. @@ -432,8 +543,16 @@ function SDL_GetCurrentDisplayMode(displayIndex: cint; mode: PSDL_DisplayMode): * SDL_GetDisplayMode() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetClosestDisplayMode_func = function(displayIndex: cint; const mode: PSDL_DisplayMode; closest: PSDL_DisplayMode): PSDL_DisplayMode; cdecl; +Var + SDL_GetClosestDisplayMode : TSDL_GetClosestDisplayMode_func = Nil; +{$else} + function SDL_GetClosestDisplayMode(displayIndex: cint; const mode: PSDL_DisplayMode; closest: PSDL_DisplayMode): PSDL_DisplayMode; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetClosestDisplayMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the index of the display containing a point @@ -447,8 +566,16 @@ function SDL_GetClosestDisplayMode(displayIndex: cint; const mode: PSDL_DisplayM * \sa SDL_GetDisplayBounds * \sa SDL_GetNumVideoDisplays *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetPointDisplayIndex_func = function(const point: PSDL_Point): cint; cdecl; +Var + SDL_GetPointDisplayIndex : TSDL_GetPointDisplayIndex_func = Nil; +{$else} + function SDL_GetPointDisplayIndex(const point: PSDL_Point): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetPointDisplayIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the index of the display primarily containing a rect @@ -463,8 +590,16 @@ function SDL_GetPointDisplayIndex(const point: PSDL_Point): cint; cdecl; * \sa SDL_GetDisplayBounds * \sa SDL_GetNumVideoDisplays *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetRectDisplayIndex_func = function(const rect: PSDL_Rect): cint; cdecl; +Var + SDL_GetRectDisplayIndex : TSDL_GetRectDisplayIndex_func = Nil; +{$else} + function SDL_GetRectDisplayIndex(const rect: PSDL_Rect): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetRectDisplayIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the display index associated with a window. @@ -473,8 +608,16 @@ function SDL_GetRectDisplayIndex(const rect: PSDL_Rect): cint; cdecl; * window, or -1 on error. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowDisplayIndex_func = function(window: PSDL_Window): cint; cdecl; +Var + SDL_GetWindowDisplayIndex : TSDL_GetWindowDisplayIndex_func = Nil; +{$else} + function SDL_GetWindowDisplayIndex(window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowDisplayIndex' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the display mode used when a fullscreen window is visible. @@ -490,8 +633,16 @@ function SDL_GetWindowDisplayIndex(window: PSDL_Window): cint; cdecl; * SDL_SetWindowFullscreen() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowDisplayMode_func = function(window: PSDL_Window; const mode: PSDL_DisplayMode): cint; cdecl; +Var + SDL_SetWindowDisplayMode : TSDL_SetWindowDisplayMode_func = Nil; +{$else} + function SDL_SetWindowDisplayMode(window: PSDL_Window; const mode: PSDL_DisplayMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowDisplayMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Fill in information about the display mode used when a fullscreen @@ -501,8 +652,16 @@ function SDL_SetWindowDisplayMode(window: PSDL_Window; const mode: PSDL_DisplayM * SDL_SetWindowFullscreen() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowDisplayMode_func = function(window: PSDL_Window; mode: PSDL_DisplayMode): cint; cdecl; +Var + SDL_GetWindowDisplayMode : TSDL_GetWindowDisplayMode_func = Nil; +{$else} + function SDL_GetWindowDisplayMode(window: PSDL_Window; mode: PSDL_DisplayMode): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowDisplayMode' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the raw ICC profile data for the screen the window is currently on. @@ -516,15 +675,31 @@ function SDL_GetWindowDisplayMode(window: PSDL_Window; mode: PSDL_DisplayMode): * * \since This function is available since SDL 2.0.18. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowICCProfile_func = function(window: PSDL_Window; size: pcsize_t): Pointer; cdecl; +Var + SDL_GetWindowICCProfile : TSDL_GetWindowICCProfile_func = Nil; +{$else} + function SDL_GetWindowICCProfile(window: PSDL_Window; size: pcsize_t): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowICCProfile' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the pixel format associated with the window. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowPixelFormat_func = function(window: PSDL_Window): cuint32; cdecl; +Var + SDL_GetWindowPixelFormat : TSDL_GetWindowPixelFormat_func = Nil; +{$else} + function SDL_GetWindowPixelFormat(window: PSDL_Window): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowPixelFormat' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Create a window with the specified position, dimensions, and flags. @@ -569,8 +744,16 @@ function SDL_GetWindowPixelFormat(window: PSDL_Window): cuint32; cdecl; * \sa SDL_Vulkan_LoadLibrary() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateWindow_func = function(const title: PAnsiChar; x: cint; y: cint; w: cint; h: cint; flags: TSDL_WindowFlags): PSDL_Window; cdecl; +Var + SDL_CreateWindow : TSDL_CreateWindow_func = Nil; +{$else} + function SDL_CreateWindow(const title: PAnsiChar; x: cint; y: cint; w: cint; h: cint; flags: TSDL_WindowFlags): PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Create an SDL window from an existing native window. @@ -582,29 +765,61 @@ function SDL_CreateWindow(const title: PAnsiChar; x: cint; y: cint; w: cint; h: * SDL_DestroyWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_CreateWindowFrom_func = function(const data: Pointer): PSDL_Window; cdecl; +Var + SDL_CreateWindowFrom : TSDL_CreateWindowFrom_func = Nil; +{$else} + function SDL_CreateWindowFrom(const data: Pointer): PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_CreateWindowFrom' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the numeric ID of a window, for logging purposes. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowID_func = function(window: PSDL_Window): cuint32; cdecl; +Var + SDL_GetWindowID : TSDL_GetWindowID_func = Nil; +{$else} + function SDL_GetWindowID(window: PSDL_Window): cuint32; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a window from a stored ID, or nil if it doesn't exist. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowFromID_func = function(id: cuint32): PSDL_Window; cdecl; +Var + SDL_GetWindowFromID : TSDL_GetWindowFromID_func = Nil; +{$else} + function SDL_GetWindowFromID(id: cuint32): PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowFromID' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the window flags. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowFlags_func = function(window: PSDL_Window): TSDL_WindowFlags; cdecl; +Var + SDL_GetWindowFlags : TSDL_GetWindowFlags_func = Nil; +{$else} + function SDL_GetWindowFlags(window: PSDL_Window): TSDL_WindowFlags; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowFlags' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the title of a window, in UTF-8 format. @@ -612,8 +827,16 @@ function SDL_GetWindowFlags(window: PSDL_Window): TSDL_WindowFlags; cdecl; * SDL_GetWindowTitle() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowTitle_proc = procedure(window: PSDL_Window; const title: PAnsiChar); cdecl; +Var + SDL_SetWindowTitle : TSDL_SetWindowTitle_proc = Nil; +{$else} + procedure SDL_SetWindowTitle(window: PSDL_Window; const title: PAnsiChar); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowTitle' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the title of a window, in UTF-8 format. @@ -621,8 +844,16 @@ procedure SDL_SetWindowTitle(window: PSDL_Window; const title: PAnsiChar); cdecl * SDL_SetWindowTitle() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowTitle_func = function(window: PSDL_Window): PAnsiChar; cdecl; +Var + SDL_GetWindowTitle : TSDL_GetWindowTitle_func = Nil; +{$else} + function SDL_GetWindowTitle(window: PSDL_Window): PAnsiChar; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowTitle' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the icon for a window. @@ -630,8 +861,16 @@ function SDL_GetWindowTitle(window: PSDL_Window): PAnsiChar; cdecl; * icon The icon for the window. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowIcon_proc = procedure(window: PSDL_Window; icon: PSDL_Surface); cdecl; +Var + SDL_SetWindowIcon : TSDL_SetWindowIcon_proc = Nil; +{$else} + procedure SDL_SetWindowIcon(window: PSDL_Window; icon: PSDL_Surface); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowIcon' {$ENDIF} {$ENDIF}; +{$endif} {** * Associate an arbitrary named pointer with a window. @@ -647,8 +886,16 @@ procedure SDL_SetWindowIcon(window: PSDL_Window; icon: PSDL_Surface); cdecl; * SDL_GetWindowData() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowData_func = function(window: PSDL_Window; const name: PAnsiChar; userdata: Pointer): Pointer; cdecl; +Var + SDL_SetWindowData : TSDL_SetWindowData_func = Nil; +{$else} + function SDL_SetWindowData(window: PSDL_Window; const name: PAnsiChar; userdata: Pointer): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowData' {$ENDIF} {$ENDIF}; +{$endif} {** * Retrieve the data pointer associated with a window. @@ -661,8 +908,16 @@ function SDL_SetWindowData(window: PSDL_Window; const name: PAnsiChar; userdata: * SDL_SetWindowData() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowData_func = function(window: PSDL_Window; const name: PAnsiChar): Pointer; cdecl; +Var + SDL_GetWindowData : TSDL_GetWindowData_func = Nil; +{$else} + function SDL_GetWindowData(window: PSDL_Window; const name: PAnsiChar): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowData' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the position of a window. @@ -678,8 +933,16 @@ function SDL_GetWindowData(window: PSDL_Window; const name: PAnsiChar): Pointer; * SDL_GetWindowPosition() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowPosition_proc = procedure(window: PSDL_Window; x: cint; y: cint); cdecl; +Var + SDL_SetWindowPosition : TSDL_SetWindowPosition_proc = Nil; +{$else} + procedure SDL_SetWindowPosition(window: PSDL_Window; x: cint; y: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowPosition' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the position of a window. @@ -690,8 +953,16 @@ procedure SDL_SetWindowPosition(window: PSDL_Window; x: cint; y: cint); cdecl; * SDL_SetWindowPosition() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowPosition_proc = procedure(window: PSDL_Window; x: pcint; y: pcint); cdecl; +Var + SDL_GetWindowPosition : TSDL_GetWindowPosition_proc = Nil; +{$else} + procedure SDL_GetWindowPosition(window: PSDL_Window; x: pcint; y: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowPosition' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the size of a window's client area. @@ -705,8 +976,16 @@ procedure SDL_GetWindowPosition(window: PSDL_Window; x: pcint; y: pcint); cdecl; * SDL_GetWindowSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowSize_proc = procedure(window: PSDL_Window; w: cint; h: cint); cdecl; +Var + SDL_SetWindowSize : TSDL_SetWindowSize_proc = Nil; +{$else} + procedure SDL_SetWindowSize(window: PSDL_Window; w: cint; h: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the size of a window's client area. @@ -717,8 +996,16 @@ procedure SDL_SetWindowSize(window: PSDL_Window; w: cint; h: cint); cdecl; * SDL_SetWindowSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowSize_proc = procedure(window: PSDL_Window; w: pcint; h: pcint); cdecl; +Var + SDL_GetWindowSize : TSDL_GetWindowSize_proc = Nil; +{$else} + procedure SDL_GetWindowSize(window: PSDL_Window; w: pcint; h: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowSize' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the size of a window's borders (decorations) around the client area. @@ -735,8 +1022,16 @@ procedure SDL_GetWindowSize(window: PSDL_Window; w: pcint; h: pcint); cdecl; * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as * if the window in question was borderless. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowBordersSize_func = function(window: PSDL_Window; top, left, bottom, right: pcint): cint; cdecl; +Var + SDL_GetWindowBordersSize : TSDL_GetWindowBordersSize_func = Nil; +{$else} + function SDL_GetWindowBordersSize(window: PSDL_Window; top, left, bottom, right: pcint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowBordersSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the size of a window in pixels. @@ -756,8 +1051,16 @@ function SDL_GetWindowBordersSize(window: PSDL_Window; top, left, bottom, right: * \sa SDL_CreateWindow * \sa SDL_GetWindowSize *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowSizeInPixels_proc = procedure(window: PSDL_Window; w, h: pcuint); cdecl; +Var + SDL_GetWindowSizeInPixels : TSDL_GetWindowSizeInPixels_proc = Nil; +{$else} + procedure SDL_GetWindowSizeInPixels(window: PSDL_Window; w, h: pcuint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowSizeInPixels' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the minimum size of a window's client area. @@ -772,8 +1075,16 @@ procedure SDL_GetWindowSizeInPixels(window: PSDL_Window; w, h: pcuint); cdecl; * SDL_SetWindowMaximumSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowMinimumSize_proc = procedure(window: PSDL_Window; min_w: cint; min_h: cint); cdecl; +Var + SDL_SetWindowMinimumSize : TSDL_SetWindowMinimumSize_proc = Nil; +{$else} + procedure SDL_SetWindowMinimumSize(window: PSDL_Window; min_w: cint; min_h: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowMinimumSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the minimum size of a window's client area. @@ -785,8 +1096,16 @@ procedure SDL_SetWindowMinimumSize(window: PSDL_Window; min_w: cint; min_h: cint * SDL_SetWindowMinimumSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowMinimumSize_proc = procedure(window: PSDL_Window; w: pcint; h: pcint); cdecl; +Var + SDL_GetWindowMinimumSize : TSDL_GetWindowMinimumSize_proc = Nil; +{$else} + procedure SDL_GetWindowMinimumSize(window: PSDL_Window; w: pcint; h: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowMinimumSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the maximum size of a window's client area. @@ -801,8 +1120,16 @@ procedure SDL_GetWindowMinimumSize(window: PSDL_Window; w: pcint; h: pcint); cde * SDL_SetWindowMinimumSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowMaximumSize_proc = procedure(window: PSDL_Window; max_w: cint; max_h: cint); cdecl; +Var + SDL_SetWindowMaximumSize : TSDL_SetWindowMaximumSize_proc = Nil; +{$else} + procedure SDL_SetWindowMaximumSize(window: PSDL_Window; max_w: cint; max_h: cint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowMaximumSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the maximum size of a window's client area. @@ -814,8 +1141,16 @@ procedure SDL_SetWindowMaximumSize(window: PSDL_Window; max_w: cint; max_h: cint * SDL_SetWindowMaximumSize() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowMaximumSize_proc = procedure(window: PSDL_Window; w: pcint; h: pcint); cdecl; +Var + SDL_GetWindowMaximumSize : TSDL_GetWindowMaximumSize_proc = Nil; +{$else} + procedure SDL_GetWindowMaximumSize(window: PSDL_Window; w: pcint; h: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowMaximumSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the border state of a window. @@ -832,8 +1167,16 @@ procedure SDL_GetWindowMaximumSize(window: PSDL_Window; w: pcint; h: pcint); cde * SDL_GetWindowFlags() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowBordered_proc = procedure(window: PSDL_Window; bordered: TSDL_Bool); cdecl; +Var + SDL_SetWindowBordered : TSDL_SetWindowBordered_proc = Nil; +{$else} + procedure SDL_SetWindowBordered(window: PSDL_Window; bordered: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowBordered' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Set the user-resizable state of a window. @@ -849,8 +1192,16 @@ procedure SDL_SetWindowBordered(window: PSDL_Window; bordered: TSDL_Bool); cdecl * * \sa SDL_GetWindowFlags() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowResizable_proc = procedure(window: PSDL_Window; resizable: TSDL_Bool); cdecl; +Var + SDL_SetWindowResizable : TSDL_SetWindowResizable_proc = Nil; +{$else} + procedure SDL_SetWindowResizable(window: PSDL_Window; resizable: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowResizable' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the window to always be above the others. @@ -866,8 +1217,16 @@ procedure SDL_SetWindowResizable(window: PSDL_Window; resizable: TSDL_Bool); cde * * \sa SDL_GetWindowFlags *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowAlwaysOnTop_proc = procedure(window: PSDL_Window; on_top: TSDL_Bool); cdecl; +Var + SDL_SetWindowAlwaysOnTop : TSDL_SetWindowAlwaysOnTop_proc = Nil; +{$else} + procedure SDL_SetWindowAlwaysOnTop(window: PSDL_Window; on_top: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowAlwaysOnTop' {$ENDIF} {$ENDIF}; +{$endif} {** * Show a window. @@ -875,8 +1234,16 @@ procedure SDL_SetWindowAlwaysOnTop(window: PSDL_Window; on_top: TSDL_Bool); cdec * SDL_HideWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_ShowWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_ShowWindow : TSDL_ShowWindow_proc = Nil; +{$else} + procedure SDL_ShowWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_ShowWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Hide a window. @@ -884,15 +1251,31 @@ procedure SDL_ShowWindow(window: PSDL_Window); cdecl; * SDL_ShowWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HideWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_HideWindow : TSDL_HideWindow_proc = Nil; +{$else} + procedure SDL_HideWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HideWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Raise a window above other windows and set the input focus. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RaiseWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_RaiseWindow : TSDL_RaiseWindow_proc = Nil; +{$else} + procedure SDL_RaiseWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RaiseWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Make a window as large as possible. @@ -900,8 +1283,16 @@ procedure SDL_RaiseWindow(window: PSDL_Window); cdecl; * SDL_RestoreWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MaximizeWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_MaximizeWindow : TSDL_MaximizeWindow_proc = Nil; +{$else} + procedure SDL_MaximizeWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MaximizeWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Minimize a window to an iconic representation. @@ -909,8 +1300,16 @@ procedure SDL_MaximizeWindow(window: PSDL_Window); cdecl; * SDL_RestoreWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_MinimizeWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_MinimizeWindow : TSDL_MinimizeWindow_proc = Nil; +{$else} + procedure SDL_MinimizeWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_MinimizeWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Restore the size and position of a minimized or maximized window. @@ -919,8 +1318,16 @@ procedure SDL_MinimizeWindow(window: PSDL_Window); cdecl; * SDL_MinimizeWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_RestoreWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_RestoreWindow : TSDL_RestoreWindow_proc = Nil; +{$else} + procedure SDL_RestoreWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_RestoreWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a window's fullscreen state. @@ -931,8 +1338,16 @@ procedure SDL_RestoreWindow(window: PSDL_Window); cdecl; * SDL_GetWindowDisplayMode() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowFullscreen_func = function(window: PSDL_Window; flags: TSDL_WindowFlags): cint; cdecl; +Var + SDL_SetWindowFullscreen : TSDL_SetWindowFullscreen_func = Nil; +{$else} + function SDL_SetWindowFullscreen(window: PSDL_Window; flags: TSDL_WindowFlags): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowFullscreen' {$ENDIF} {$ENDIF}; +{$endif} {** * Return whether the window has a surface associated with it. @@ -944,8 +1359,16 @@ function SDL_SetWindowFullscreen(window: PSDL_Window; flags: TSDL_WindowFlags): * * \sa SDL_GetWindowSurface *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_HasWindowSurface_func = function(window: PSDL_Window): TSDL_Bool; cdecl; +Var + SDL_HasWindowSurface : TSDL_HasWindowSurface_func = Nil; +{$else} + function SDL_HasWindowSurface(window: PSDL_Window): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_HasWindowSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the SDL surface associated with the window. @@ -961,8 +1384,16 @@ function SDL_HasWindowSurface(window: PSDL_Window): TSDL_Bool; cdecl; * SDL_UpdateWindowSurfaceRects() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowSurface_func = function(window: PSDL_Window): PSDL_Surface; cdecl; +Var + SDL_GetWindowSurface : TSDL_GetWindowSurface_func = Nil; +{$else} + function SDL_GetWindowSurface(window: PSDL_Window): PSDL_Surface; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Copy the window surface to the screen. @@ -973,8 +1404,16 @@ function SDL_GetWindowSurface(window: PSDL_Window): PSDL_Surface; cdecl; * SDL_UpdateWindowSurfaceRects() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UpdateWindowSurface_func = function(window: PSDL_Window): cint; cdecl; +Var + SDL_UpdateWindowSurface : TSDL_UpdateWindowSurface_func = Nil; +{$else} + function SDL_UpdateWindowSurface(window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateWindowSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Copy a number of rectangles on the window surface to the screen. @@ -985,8 +1424,16 @@ function SDL_UpdateWindowSurface(window: PSDL_Window): cint; cdecl; * SDL_UpdateWindowSurfaceRect() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_UpdateWindowSurfaceRects_func = function(window: PSDL_Window; rects: PSDL_Rect; numrects: cint): cint; cdecl; +Var + SDL_UpdateWindowSurfaceRects : TSDL_UpdateWindowSurfaceRects_func = Nil; +{$else} + function SDL_UpdateWindowSurfaceRects(window: PSDL_Window; rects: PSDL_Rect; numrects: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_UpdateWindowSurfaceRects' {$ENDIF} {$ENDIF}; +{$endif} {** * Destroy the surface associated with the window. @@ -1000,8 +1447,16 @@ function SDL_UpdateWindowSurfaceRects(window: PSDL_Window; rects: PSDL_Rect; num * \sa SDL_GetWindowSurface * \sa SDL_HasWindowSurface *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DestroyWindowSurface_func = function(window: PSDL_Window): cint; cdecl; +Var + SDL_DestroyWindowSurface : TSDL_DestroyWindowSurface_func = Nil; +{$else} + function SDL_DestroyWindowSurface(window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyWindowSurface' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a window's input grab mode. @@ -1011,8 +1466,16 @@ function SDL_DestroyWindowSurface(window: PSDL_Window): cint; cdecl; * SDL_GetWindowGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowGrab_proc = procedure(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; +Var + SDL_SetWindowGrab : TSDL_SetWindowGrab_proc = Nil; +{$else} + procedure SDL_SetWindowGrab(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a window's input grab mode. @@ -1022,8 +1485,16 @@ procedure SDL_SetWindowGrab(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; * SDL_SetWindowGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowGrab_func = function(window: PSDL_Window): TSDL_Bool; cdecl; +Var + SDL_GetWindowGrab : TSDL_GetWindowGrab_func = Nil; +{$else} + function SDL_GetWindowGrab(window: PSDL_Window): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a window's keyboard grab mode. @@ -1053,8 +1524,16 @@ function SDL_GetWindowGrab(window: PSDL_Window): TSDL_Bool; cdecl; * \sa SDL_SetWindowMouseGrab * \sa SDL_SetWindowGrab *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowKeyboardGrab_proc = procedure(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; +Var + SDL_SetWindowKeyboardGrab : TSDL_SetWindowKeyboardGrab_proc = Nil; +{$else} + procedure SDL_SetWindowKeyboardGrab(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowKeyboardGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a window's keyboard grab mode. @@ -1064,8 +1543,16 @@ procedure SDL_SetWindowKeyboardGrab(window: PSDL_Window; grabbed: TSDL_Bool); cd * SDL_SetWindowKeyboardGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowKeyboardGrab_func = function(window: PSDL_Window): TSDL_Bool; cdecl; +Var + SDL_GetWindowKeyboardGrab : TSDL_GetWindowKeyboardGrab_func = Nil; +{$else} + function SDL_GetWindowKeyboardGrab(window: PSDL_Window): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowKeyboardGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Set a window's mouse grab mode. @@ -1076,8 +1563,16 @@ function SDL_GetWindowKeyboardGrab(window: PSDL_Window): TSDL_Bool; cdecl; * SDL_GetWindowMouseGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowMouseGrab_proc = procedure(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; +Var + SDL_SetWindowMouseGrab : TSDL_SetWindowMouseGrab_proc = Nil; +{$else} + procedure SDL_SetWindowMouseGrab(window: PSDL_Window; grabbed: TSDL_Bool); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowMouseGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Get a window's mouse grab mode. @@ -1087,8 +1582,16 @@ procedure SDL_SetWindowMouseGrab(window: PSDL_Window; grabbed: TSDL_Bool); cdecl * SDL_SetWindowMouseGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowMouseGrab_func = function(window: PSDL_Window): TSDL_Bool; cdecl; +Var + SDL_GetWindowMouseGrab : TSDL_GetWindowMouseGrab_func = Nil; +{$else} + function SDL_GetWindowMouseGrab(window: PSDL_Window): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowMouseGrab' {$ENDIF} {$ENDIF}; +{$endif} {** * Confines the cursor to the specified area of a window. @@ -1099,8 +1602,16 @@ function SDL_GetWindowMouseGrab(window: PSDL_Window): TSDL_Bool; cdecl; * SDL_GetWindowMouseRect() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowMouseRect_proc = procedure(window: PSDL_Window; rect: PSDL_Rect); cdecl; +Var + SDL_SetWindowMouseRect : TSDL_SetWindowMouseRect_proc = Nil; +{$else} + procedure SDL_SetWindowMouseRect(window: PSDL_Window; rect: PSDL_Rect); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowMouseRect' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the mouse confinement rectangle of a window. @@ -1110,8 +1621,16 @@ procedure SDL_SetWindowMouseRect(window: PSDL_Window; rect: PSDL_Rect); cdecl; * SDL_SetWindowMouseRect() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowMouseRect_func = function(window: PSDL_Window): PSDL_Rect; cdecl; +Var + SDL_GetWindowMouseRect : TSDL_GetWindowMouseRect_func = Nil; +{$else} + function SDL_GetWindowMouseRect(window: PSDL_Window): PSDL_Rect; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowMouseRect' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the window that currently has an input grab enabled. @@ -1120,8 +1639,16 @@ function SDL_GetWindowMouseRect(window: PSDL_Window): PSDL_Rect; cdecl; * * \sa SDL_SetWindowGrab() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetGrabbedWindow_func = function(): PSDL_Window; cdecl; +Var + SDL_GetGrabbedWindow : TSDL_GetGrabbedWindow_func = Nil; +{$else} + function SDL_GetGrabbedWindow(): PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetGrabbedWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the brightness (gamma correction) for a window. @@ -1132,8 +1659,16 @@ function SDL_GetGrabbedWindow(): PSDL_Window; cdecl; * SDL_SetWindowGammaRamp() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowBrightness_func = function(window: PSDL_Window; brightness: cfloat): cint; cdecl; +Var + SDL_SetWindowBrightness : TSDL_SetWindowBrightness_func = Nil; +{$else} + function SDL_SetWindowBrightness(window: PSDL_Window; brightness: cfloat): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowBrightness' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the brightness (gamma correction) for a window. @@ -1143,8 +1678,16 @@ function SDL_SetWindowBrightness(window: PSDL_Window; brightness: cfloat): cint; * SDL_SetWindowBrightness() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowBrightness_func = function(window: PSDL_Window): cfloat; cdecl; +Var + SDL_GetWindowBrightness : TSDL_GetWindowBrightness_func = Nil; +{$else} + function SDL_GetWindowBrightness(window: PSDL_Window): cfloat; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowBrightness' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Set the opacity for a window @@ -1157,8 +1700,16 @@ function SDL_GetWindowBrightness(window: PSDL_Window): cfloat; cdecl; * * \sa SDL_GetWindowOpacity() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowOpacity_func = function(window: PSDL_Window; opacity: cfloat): cint; cdecl; +Var + SDL_SetWindowOpacity : TSDL_SetWindowOpacity_func = Nil; +{$else} + function SDL_SetWindowOpacity(window: PSDL_Window; opacity: cfloat): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowOpacity' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Get the opacity of a window. @@ -1173,8 +1724,16 @@ function SDL_SetWindowOpacity(window: PSDL_Window; opacity: cfloat): cint; cdecl * * \sa SDL_SetWindowOpacity() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowOpacity_func = function(window: PSDL_Window; out_opacity: pcfloat): cint; cdecl; +Var + SDL_GetWindowOpacity : TSDL_GetWindowOpacity_func = Nil; +{$else} + function SDL_GetWindowOpacity(window: PSDL_Window; out_opacity: pcfloat): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowOpacity' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Sets the window as a modal for another window @@ -1184,8 +1743,16 @@ function SDL_GetWindowOpacity(window: PSDL_Window; out_opacity: pcfloat): cint; * * \return 0 on success, or -1 otherwise. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowModalFor_func = function(modal_window, parent_window: PSDL_Window): cint; cdecl; +Var + SDL_SetWindowModalFor : TSDL_SetWindowModalFor_func = Nil; +{$else} + function SDL_SetWindowModalFor(modal_window, parent_window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowModalFor' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Explicitly sets input focus to the window. @@ -1199,8 +1766,16 @@ function SDL_SetWindowModalFor(modal_window, parent_window: PSDL_Window): cint; * \return 0 on success, or -1 otherwise. * \sa SDL_RaiseWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowInputFocus_func = function(window: PSDL_Window): cint; cdecl; +Var + SDL_SetWindowInputFocus : TSDL_SetWindowInputFocus_func = Nil; +{$else} + function SDL_SetWindowInputFocus(window: PSDL_Window): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowInputFocus' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the gamma ramp for a window. @@ -1220,8 +1795,16 @@ function SDL_SetWindowInputFocus(window: PSDL_Window): cint; cdecl; * SDL_GetWindowGammaRamp() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowGammaRamp_func = function(window: PSDL_Window; const red: pcuint16; const green: pcuint16; const blue: pcuint16): cint; cdecl; +Var + SDL_SetWindowGammaRamp : TSDL_SetWindowGammaRamp_func = Nil; +{$else} + function SDL_SetWindowGammaRamp(window: PSDL_Window; const red: pcuint16; const green: pcuint16; const blue: pcuint16): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowGammaRamp' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the gamma ramp for a window. @@ -1238,8 +1821,16 @@ function SDL_SetWindowGammaRamp(window: PSDL_Window; const red: pcuint16; const * SDL_SetWindowGammaRamp() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GetWindowGammaRamp_func = function(window: PSDL_Window; red: pcuint16; green: pcuint16; blue: pcuint16): cint; cdecl; +Var + SDL_GetWindowGammaRamp : TSDL_GetWindowGammaRamp_func = Nil; +{$else} + function SDL_GetWindowGammaRamp(window: PSDL_Window; red: pcuint16; green: pcuint16; blue: pcuint16): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetWindowGammaRamp' {$ENDIF} {$ENDIF}; +{$endif} {** * \brief Possible return values from the SDL_HitTest callback. @@ -1310,8 +1901,16 @@ type * \param callback_data An app-defined void pointer passed to the callback. * \return 0 on success, -1 on error (including unsupported). *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_SetWindowHitTest_func = function(window: PSDL_Window; callback: TSDL_HitTest; callback_data: Pointer): cint; cdecl; +Var + SDL_SetWindowHitTest : TSDL_SetWindowHitTest_func = Nil; +{$else} + function SDL_SetWindowHitTest(window: PSDL_Window; callback: TSDL_HitTest; callback_data: Pointer): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_SetWindowHitTest' {$ENDIF} {$ENDIF}; +{$endif} {** * Request a window to demand attention from the user. @@ -1323,15 +1922,31 @@ function SDL_SetWindowHitTest(window: PSDL_Window; callback: TSDL_HitTest; callb * * \since This function is available since SDL 2.0.16. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_FlashWindow_func = function(window: PSDL_Window; operation: TSDL_FlashOperation): cint; cdecl; +Var + SDL_FlashWindow : TSDL_FlashWindow_func = Nil; +{$else} + function SDL_FlashWindow(window: PSDL_Window; operation: TSDL_FlashOperation): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_FlashWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Destroy a window. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DestroyWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_DestroyWindow : TSDL_DestroyWindow_proc = Nil; +{$else} + procedure SDL_DestroyWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DestroyWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Returns whether the screensaver is currently enabled (default on). @@ -1339,30 +1954,45 @@ procedure SDL_DestroyWindow(window: PSDL_Window); cdecl; * SDL_EnableScreenSaver() * SDL_DisableScreenSaver() *} - +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_IsScreenSaverEnabled_func = function : TSDL_Bool; cdecl; +Var + SDL_IsScreenSaverEnabled : TSDL_IsScreenSaverEnabled_func = Nil; +{$else} function SDL_IsScreenSaverEnabled: TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_IsScreenSaverEnabled' {$ENDIF} {$ENDIF}; - +{$endif} {** * Allow the screen to be blanked by a screensaver * * SDL_IsScreenSaverEnabled() * SDL_DisableScreenSaver() *} - +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_EnableScreenSaver_proc = procedure ; cdecl; +Var + SDL_EnableScreenSaver : TSDL_EnableScreenSaver_proc = Nil; +{$else} procedure SDL_EnableScreenSaver; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_EnableScreenSaver' {$ENDIF} {$ENDIF}; - + {$endif} {** * Prevent the screen from being blanked by a screensaver * * SDL_IsScreenSaverEnabled() * SDL_EnableScreenSaver() *} - +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_DisableScreenSaver_proc =procedure ; cdecl; +Var + SDL_DisableScreenSaver : TSDL_DisableScreenSaver_proc = Nil; +{$else} procedure SDL_DisableScreenSaver; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_DisableScreenSaver' {$ENDIF} {$ENDIF}; - + {$endif} {** * OpenGL support functions *} @@ -1386,52 +2016,106 @@ procedure SDL_DisableScreenSaver; cdecl; * SDL_GL_UnloadLibrary() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_LoadLibrary_func = function(const path: PAnsiChar): cint; cdecl; +Var + SDL_GL_LoadLibrary : TSDL_GL_LoadLibrary_func = Nil; +{$else} + function SDL_GL_LoadLibrary(const path: PAnsiChar): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_LoadLibrary' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the address of an OpenGL function. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetProcAddress_func = function(const proc: PAnsiChar): Pointer; cdecl; +Var + SDL_GL_GetProcAddress : TSDL_GL_GetProcAddress_func = Nil; +{$else} + function SDL_GL_GetProcAddress(const proc: PAnsiChar): Pointer; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetProcAddress' {$ENDIF} {$ENDIF}; +{$endif} {** * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). * * SDL_GL_LoadLibrary() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_UnloadLibrary_proc = procedure ; cdecl; +Var + SDL_GL_UnloadLibrary : TSDL_GL_UnloadLibrary_proc = Nil; +{$else} procedure SDL_GL_UnloadLibrary; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_UnloadLibrary' {$ENDIF} {$ENDIF}; - + {$endif} {** * Return true if an OpenGL extension is supported for the current * context. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_ExtensionSupported_func = function(const extension: PAnsiChar): TSDL_Bool; cdecl; +Var + SDL_GL_ExtensionSupported : TSDL_GL_ExtensionSupported_func = Nil; +{$else} + function SDL_GL_ExtensionSupported(const extension: PAnsiChar): TSDL_Bool; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_ExtensionSupported' {$ENDIF} {$ENDIF}; +{$endif} {** * Reset all previously set OpenGL context attributes to their default values *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_ResetAttributes_proc = procedure(); cdecl; +Var + SDL_GL_ResetAttributes : TSDL_GL_ResetAttributes_proc = Nil; +{$else} + procedure SDL_GL_ResetAttributes(); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_ResetAttributes' {$ENDIF} {$ENDIF}; +{$endif} {** * Set an OpenGL window attribute before window creation. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_SetAttribute_func = function(attr: TSDL_GLattr; value: cint): cint; cdecl; +Var + SDL_GL_SetAttribute : TSDL_GL_SetAttribute_func = Nil; +{$else} + function SDL_GL_SetAttribute(attr: TSDL_GLattr; value: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_SetAttribute' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the actual value for an attribute from the current context. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetAttribute_func = function(attr: TSDL_GLattr; value: pcint): cint; cdecl; +Var + SDL_GL_GetAttribute : TSDL_GL_GetAttribute_func = Nil; +{$else} + function SDL_GL_GetAttribute(attr: TSDL_GLattr; value: pcint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetAttribute' {$ENDIF} {$ENDIF}; +{$endif} {** * Create an OpenGL context for use with an OpenGL window, and make it @@ -1440,8 +2124,16 @@ function SDL_GL_GetAttribute(attr: TSDL_GLattr; value: pcint): cint; cdecl; * SDL_GL_DeleteContext() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_CreateContext_func = function(window: PSDL_Window): TSDL_GLContext; cdecl; +Var + SDL_GL_CreateContext : TSDL_GL_CreateContext_func = Nil; +{$else} + function SDL_GL_CreateContext(window: PSDL_Window): TSDL_GLContext; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_CreateContext' {$ENDIF} {$ENDIF}; +{$endif} {** * Set up an OpenGL context for rendering into an OpenGL window. @@ -1449,21 +2141,41 @@ function SDL_GL_CreateContext(window: PSDL_Window): TSDL_GLContext; cdecl; * The context must have been created with a compatible window. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_MakeCurrent_func = function(window: PSDL_Window; context: TSDL_GLContext): cint; cdecl; +Var + SDL_GL_MakeCurrent : TSDL_GL_MakeCurrent_func = Nil; +{$else} + function SDL_GL_MakeCurrent(window: PSDL_Window; context: TSDL_GLContext): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_MakeCurrent' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the currently active OpenGL window. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetCurrentWindow_func = function : PSDL_Window; cdecl; +Var + SDL_GL_GetCurrentWindow : TSDL_GL_GetCurrentWindow_func = Nil; +{$else} function SDL_GL_GetCurrentWindow: PSDL_Window; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetCurrentWindow' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the currently active OpenGL context. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetCurrentContext_func = function : TSDL_GLContext; cdecl; +Var + SDL_GL_GetCurrentContext : TSDL_GL_GetCurrentContext_func = Nil; +{$else} function SDL_GL_GetCurrentContext: TSDL_GLContext; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetCurrentContext' {$ENDIF} {$ENDIF}; - + {$endif} {** * Get the size of a window's underlying drawable in pixels (for use * with glViewport). @@ -1481,8 +2193,16 @@ function SDL_GL_GetCurrentContext: TSDL_GLContext; cdecl; * SDL_CreateWindow() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetDrawableSize_proc = procedure(window: PSDL_Window; w: pcint; h: pcint); cdecl; +Var + SDL_GL_GetDrawableSize : TSDL_GL_GetDrawableSize_proc = Nil; +{$else} + procedure SDL_GL_GetDrawableSize(window: PSDL_Window; w: pcint; h: pcint); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetDrawableSize' {$ENDIF} {$ENDIF}; +{$endif} {** * Set the swap interval for the current OpenGL context. @@ -1497,8 +2217,16 @@ procedure SDL_GL_GetDrawableSize(window: PSDL_Window; w: pcint; h: pcint); cdecl * SDL_GL_GetSwapInterval() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_SetSwapInterval_func = function(interval: cint): cint; cdecl; +Var + SDL_GL_SetSwapInterval : TSDL_GL_SetSwapInterval_func = Nil; +{$else} + function SDL_GL_SetSwapInterval(interval: cint): cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_SetSwapInterval' {$ENDIF} {$ENDIF}; +{$endif} {** * Get the swap interval for the current OpenGL context. @@ -1512,16 +2240,30 @@ function SDL_GL_SetSwapInterval(interval: cint): cint; cdecl; * SDL_GL_SetSwapInterval() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_GetSwapInterval_func = function : cint; cdecl; +Var + SDL_GL_GetSwapInterval : TSDL_GL_GetSwapInterval_func = Nil; +{$else} function SDL_GL_GetSwapInterval: cint; cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_GetSwapInterval' {$ENDIF} {$ENDIF}; - +{$endif} {** * Swap the OpenGL buffers for a window, if double-buffering is * supported. *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_SwapWindow_proc = procedure(window: PSDL_Window); cdecl; +Var + SDL_GL_SwapWindow : TSDL_GL_SwapWindow_proc = Nil; +{$else} + procedure SDL_GL_SwapWindow(window: PSDL_Window); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_SwapWindow' {$ENDIF} {$ENDIF}; +{$endif} {** * Delete an OpenGL context. @@ -1529,7 +2271,15 @@ procedure SDL_GL_SwapWindow(window: PSDL_Window); cdecl; * SDL_GL_CreateContext() *} +{$ifdef SDL_RUNTIME_LOADING} +Type + TSDL_GL_DeleteContext_proc = procedure(context: TSDL_GLContext); cdecl; +Var + SDL_GL_DeleteContext : TSDL_GL_DeleteContext_proc = Nil; +{$else} + procedure SDL_GL_DeleteContext(context: TSDL_GLContext); cdecl; external SDL_LibName {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GL_DeleteContext' {$ENDIF} {$ENDIF}; +{$endif} {*OpenGL support functions*}