Author: akhaldi Date: Fri Feb 28 21:24:32 2014 New Revision: 62360
URL: http://svn.reactos.org/svn/reactos?rev=62360&view=rev Log: [OPENGL32] * Mark as hotpatchable. CORE-7959
Modified: trunk/reactos/dll/opengl/opengl32/CMakeLists.txt trunk/reactos/dll/opengl/opengl32/wgl.c
Modified: trunk/reactos/dll/opengl/opengl32/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/opengl32/CMakeLi... ============================================================================== --- trunk/reactos/dll/opengl/opengl32/CMakeLists.txt [iso-8859-1] (original) +++ trunk/reactos/dll/opengl/opengl32/CMakeLists.txt [iso-8859-1] Fri Feb 28 21:24:32 2014 @@ -53,7 +53,7 @@ target_link_libraries(opengl32 mesa_x86) endif()
-set_module_type(opengl32 win32dll) +set_module_type(opengl32 win32dll HOTPATCHABLE)
add_importlibs(opengl32 gdi32 user32 advapi32 msvcrt kernel32 ntdll) add_pch(opengl32 opengl32.h SOURCE)
Modified: trunk/reactos/dll/opengl/opengl32/wgl.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/opengl/opengl32/wgl.c?r... ============================================================================== --- trunk/reactos/dll/opengl/opengl32/wgl.c [iso-8859-1] (original) +++ trunk/reactos/dll/opengl/opengl32/wgl.c [iso-8859-1] Fri Feb 28 21:24:32 2014 @@ -871,7 +871,7 @@ return sw_ShareLists(ctx_src->dhglrc, ctx_dst->dhglrc); }
-BOOL WINAPI wglSwapBuffers(HDC hdc) +BOOL WINAPI DECLSPEC_HOTPATCH wglSwapBuffers(HDC hdc) { struct wgl_dc_data* dc_data = get_dc_data(hdc);