mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
13 lines
399 B
Odin
13 lines
399 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import shlwapi "system:shlwapi.lib"
|
|
|
|
@(default_calling_convention="system")
|
|
foreign shlwapi {
|
|
PathFileExistsW :: proc(pszPath: wstring) -> BOOL ---
|
|
PathFindExtensionW :: proc(pszPath: wstring) -> wstring ---
|
|
PathFindFileNameW :: proc(pszPath: wstring) -> wstring ---
|
|
SHAutoComplete :: proc(hwndEdit: HWND, dwFlags: DWORD) -> LWSTDAPI ---
|
|
}
|