sdlxShowOpenFolderDialog function
void
sdlxShowOpenFolderDialog({
- required Pointer<
NativeFunction< ? callback,SdlDialogFileCallback> > - Pointer<
SdlWindow> ? window, - Pointer<
NativeType> ? userdata, - String? defaultLocation,
- bool allowMany = false,
NOT FOUND
// c // extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFolderDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const char *default_location, bool allow_many) //
Implementation
void sdlxShowOpenFolderDialog({
required Pointer<NativeFunction<SdlDialogFileCallback>>? callback,
Pointer<SdlWindow>? window,
Pointer<NativeType>? userdata,
String? defaultLocation,
bool allowMany = false,
}) {
sdlShowOpenFolderDialog(
callback ?? nullptr,
userdata ?? nullptr,
window ?? nullptr,
defaultLocation,
allowMany,
);
}