mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00:00
12 lines
324 B
Odin
12 lines
324 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import shlwapi "system:shlwapi.lib"
|
|
|
|
@(default_calling_convention="stdcall")
|
|
foreign shlwapi {
|
|
PathFileExistsW :: proc(pszPath: wstring) -> BOOL ---
|
|
PathFindExtensionW :: proc(pszPath: wstring) -> wstring ---
|
|
PathFindFileNameW :: proc(pszPath: wstring) -> wstring ---
|
|
}
|