Add more libraries

This commit is contained in:
gingerBill
2022-05-12 13:54:40 +01:00
parent 2fb351bf04
commit d1fc9d3073
5 changed files with 169 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
// +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 ---
}