Skip to content

Commit 3e98a80

Browse files
hazeycodeCopilot
andauthored
Fixup callconv decl
Co-authored-by: Copilot <[email protected]>
1 parent c46f477 commit 3e98a80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bindings/windows.zig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -685,13 +685,13 @@ pub extern "Gdi32" fn SetPixelFormat(
685685

686686
pub extern "Gdi32" fn SwapBuffers(hdc: HDC) callconv(WINAPI) BOOL;
687687

688-
pub extern "Opengl32" fn wglCreateContext(hdc: HDC) callconv((WINAPI)) HGLRC;
688+
pub extern "Opengl32" fn wglCreateContext(hdc: HDC) callconv(WINAPI) HGLRC;
689689

690-
pub extern "Opengl32" fn wglDeleteContext(unnamedParam1: HGLRC) callconv((WINAPI)) BOOL;
690+
pub extern "Opengl32" fn wglDeleteContext(unnamedParam1: HGLRC) callconv(WINAPI) BOOL;
691691

692692
pub extern "Opengl32" fn wglMakeCurrent(
693693
hdc: HDC,
694694
glContext: HGLRC,
695-
) callconv((WINAPI)) BOOL;
695+
) callconv(WINAPI) BOOL;
696696

697-
pub extern "Opengl32" fn wglGetProcAddress(unnamedParam1: LPCSTR) callconv((WINAPI)) ?PROC;
697+
pub extern "Opengl32" fn wglGetProcAddress(unnamedParam1: LPCSTR) callconv(WINAPI) ?PROC;

0 commit comments

Comments
 (0)