opengl32: Fix calling convention of Unix call entry points.

This commit is contained in:
Alexandre Julliard 2022-12-01 11:30:23 +01:00
parent 5addec3966
commit 0f67dbb50e

View file

@ -1049,13 +1049,13 @@ NTSTATUS ext_wglSetPbufferAttribARB( void *args )
return STATUS_SUCCESS;
}
NTSTATUS WINAPI thread_attach( void *args )
NTSTATUS thread_attach( void *args )
{
NtCurrentTeb()->glTable = &null_opengl_funcs;
return STATUS_SUCCESS;
}
NTSTATUS WINAPI process_detach( void *args )
NTSTATUS process_detach( void *args )
{
return STATUS_SUCCESS;
}
@ -1986,7 +1986,7 @@ NTSTATUS wow64_ext_glUnmapNamedBufferEXT( void *args )
return wow64_ext_glUnmapNamedBuffer( args );
}
NTSTATUS WINAPI wow64_process_detach( void *args )
NTSTATUS wow64_process_detach( void *args )
{
NTSTATUS status;