[BROWSEUI] SHExplorerParseCmdLine: Fix parsing of /root (#6752)
[reactos.git] / win32ss / include / ntgdibad.h
index 1539ef5..58d644e 100644 (file)
@@ -50,14 +50,13 @@ typedef struct tagFONTFAMILYINFO
 } FONTFAMILYINFO, *PFONTFAMILYINFO;
 
 /* Should be using NtGdiEnumFontChunk */
-INT
+LONG
 NTAPI
 NtGdiGetFontFamilyInfo(
     HDC Dc,
-    LPLOGFONTW LogFont,
+    const LOGFONTW *LogFont,
     PFONTFAMILYINFO Info,
-    DWORD Size
-);
+    LPLONG UnsafeInfoCount);
 
 /* Use NtGdiGetDCPoint with GdiGetViewPortExt */
 BOOL APIENTRY  NtGdiGetViewportExtEx(HDC  hDC, LPSIZE viewportExt);
@@ -75,41 +74,41 @@ BOOL APIENTRY  NtGdiGetWindowOrgEx(HDC  hDC, LPPOINT windowOrg);
 BOOL
 APIENTRY
 NtGdiOffsetViewportOrgEx (
-       HDC     hDC,
-       int     XOffset,
-       int     YOffset,
-       LPPOINT Point
-       );
+    HDC hDC,
+    int XOffset,
+    int YOffset,
+    LPPOINT Point
+    );
 
 /* Needs to be done in user-mode. */
 BOOL
 APIENTRY
 NtGdiOffsetWindowOrgEx (
-       HDC     hDC,
-       int     XOffset,
-       int     YOffset,
-       LPPOINT Point
-       );
+    HDC hDC,
+    int XOffset,
+    int YOffset,
+    LPPOINT Point
+    );
 
 /* Needs to be done in user-mode. */
 BOOL
 APIENTRY
 NtGdiSetViewportOrgEx (
-       HDC     hDC,
-       int     X,
-       int     Y,
-       LPPOINT Point
-       );
+    HDC hDC,
+    int X,
+    int Y,
+    LPPOINT Point
+    );
 
 /* Needs to be done in user-mode. */
 BOOL
 APIENTRY
 NtGdiSetWindowOrgEx (
-       HDC     hDC,
-       int     X,
-       int     Y,
-       LPPOINT Point
-       );
+    HDC hDC,
+    int X,
+    int Y,
+    LPPOINT Point
+    );
 
 #endif /* WIN32K_NTGDI_BAD_INCLUDED */