mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 04:38:16 +00:00
Remove () grouping for foreign_library
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
foreign_system_library (
|
||||
"kernel32.lib" when ODIN_OS == "windows";
|
||||
"user32.lib" when ODIN_OS == "windows";
|
||||
"gdi32.lib" when ODIN_OS == "windows";
|
||||
"winmm.lib" when ODIN_OS == "windows";
|
||||
"shell32.lib" when ODIN_OS == "windows";
|
||||
)
|
||||
foreign_system_library "kernel32.lib" when ODIN_OS == "windows";
|
||||
foreign_system_library "user32.lib" when ODIN_OS == "windows";
|
||||
foreign_system_library "gdi32.lib" when ODIN_OS == "windows";
|
||||
foreign_system_library "winmm.lib" when ODIN_OS == "windows";
|
||||
foreign_system_library "shell32.lib" when ODIN_OS == "windows";
|
||||
|
||||
Handle :: rawptr;
|
||||
Hwnd :: Handle;
|
||||
|
||||
Reference in New Issue
Block a user