blob: 66ed04dd762615d97fa8138942ae25fe932040af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#+build windows
package glfw
import win32 "core:sys/windows"
@(default_calling_convention="c", link_prefix="glfw")
foreign {
GetWin32Adapter :: proc(monitor: MonitorHandle) -> cstring ---
GetWin32Monitor :: proc(monitor: MonitorHandle) -> cstring ---
GetWin32Window :: proc(window: WindowHandle) -> win32.HWND ---
GetWGLContext :: proc(window: WindowHandle) -> rawptr ---
}
|