mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-31 18:32:12 +00:00
10 lines
176 B
Odin
10 lines
176 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import dwmapi "system:Dwmapi.lib"
|
|
|
|
@(default_calling_convention="stdcall")
|
|
foreign dwmapi {
|
|
DwmFlush :: proc() -> HRESULT ---
|
|
}
|