Commit 0f67dbb5 authored by Alexandre Julliard's avatar Alexandre Julliard

opengl32: Fix calling convention of Unix call entry points.

parent 5addec39
...@@ -1049,13 +1049,13 @@ NTSTATUS ext_wglSetPbufferAttribARB( void *args ) ...@@ -1049,13 +1049,13 @@ NTSTATUS ext_wglSetPbufferAttribARB( void *args )
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
NTSTATUS WINAPI thread_attach( void *args ) NTSTATUS thread_attach( void *args )
{ {
NtCurrentTeb()->glTable = &null_opengl_funcs; NtCurrentTeb()->glTable = &null_opengl_funcs;
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
NTSTATUS WINAPI process_detach( void *args ) NTSTATUS process_detach( void *args )
{ {
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
...@@ -1986,7 +1986,7 @@ NTSTATUS wow64_ext_glUnmapNamedBufferEXT( void *args ) ...@@ -1986,7 +1986,7 @@ NTSTATUS wow64_ext_glUnmapNamedBufferEXT( void *args )
return wow64_ext_glUnmapNamedBuffer( args ); return wow64_ext_glUnmapNamedBuffer( args );
} }
NTSTATUS WINAPI wow64_process_detach( void *args ) NTSTATUS wow64_process_detach( void *args )
{ {
NTSTATUS status; NTSTATUS status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment