aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-12-08 11:06:32 +0000
committergingerBill <bill@gingerbill.org>2018-12-08 11:06:32 +0000
commitff6ec860b35bd4382523998ca2804da84fe2d9f6 (patch)
treeaf9cdc1f50d59babda847261c8de393200894d20 /core/sys
parent2bf60d3337824747a0bca7496c1cf9661eb221e7 (diff)
Fix typo
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/win32/windows.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/win32/windows.odin b/core/sys/win32/windows.odin
index c2e6478d0..75283e388 100644
--- a/core/sys/win32/windows.odin
+++ b/core/sys/win32/windows.odin
@@ -1072,7 +1072,7 @@ Com_Init :: enum {
@(default_calling_convention = "std")
foreign ole32 {
- @(link_name ="CoInitializeEx") com_init_ex :: proc(reserved: Lpvoid, co_init: Com_Init) ->Hresult ---;
+ @(link_name ="CoInitializeEx") com_init_ex :: proc(reserved: rawptr, co_init: Com_Init) ->Hresult ---;
@(link_name = "CoUninitialize") com_shutdown :: proc() ---;
}