GetOpenFileNameW typedef
GetOpenFileNameW =
Int8 Function(Pointer<NativeType> unnamedParam1)
Function from Win32 API to create an Open dialog box that lets the user specify the drive, directory, and the name of a file or set of files to be opened.
Reference: https://docs.microsoft.com/en-us/windows/win32/api/commdlg/nf-commdlg-getopenfilenamew
Implementation
typedef GetOpenFileNameW = Int8 Function(
/// A pointer to an [OPENFILENAMEW] structure that contains information used to initialize the
/// dialog box. When GetOpenFileName returns, this structure contains information about the user's
/// file selection.
Pointer unnamedParam1,
);