[ros-diffs] [fireball] 33289: - Fix a few DxEng APIs without proper calling convention (spotted by Stefan).

fireball at svn.reactos.org fireball at svn.reactos.org
Mon May 5 09:59:00 CEST 2008


Author: fireball
Date: Mon May  5 02:59:00 2008
New Revision: 33289

URL: http://svn.reactos.org/svn/reactos?rev=33289&view=rev
Log:
- Fix a few DxEng APIs without proper calling convention (spotted by Stefan).

Modified:
    trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c

Modified: trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c?rev=33289&r1=33288&r2=33289&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c [iso-8859-1] Mon May  5 02:59:00 2008
@@ -74,6 +74,7 @@
 *
 *--*/
 ULONG
+APIENTRY
 DxEngDispUniq()
 {
     DPRINT1("ReactX Calling : DxEngDispUniq\n");
@@ -510,6 +511,7 @@
 *
 *--*/
 BOOLEAN
+APIENTRY
 DxEngIncDispUniq()
 {
     DPRINT1("ReactX Calling : DxEngIncDispUniq \n");
@@ -619,8 +621,10 @@
 /* DxEngRedrawDesktop                                                   */
 /************************************************************************/
 
-/* Notes : it always return TRUE, and it update whole the screen (redaw current desktop) */
-BOOLEAN
+/* Notes : it always returns TRUE, and it updates whole screen
+   (redraws current desktop) */
+BOOLEAN
+APIENTRY
 DxEngRedrawDesktop()
 {
     /* FIXME add redraw code */
@@ -632,8 +636,9 @@
 /************************************************************************/
 /* DxEngVisRgnUniq                                                      */
 /************************************************************************/
-/* Notes :  return the VisRgnUniq counter for win32k */
+/* Notes :  returns the VisRgnUniq counter for win32k */
 ULONG
+APIENTRY
 DxEngVisRgnUniq()
 {
     DPRINT1("ReactX Calling : DxEngVisRgnUniq \n");



More information about the Ros-diffs mailing list