OSDN Git Service

Resolve secondary issue arising from MinGW-Bug [#2350]
authorKeith Marshall <keithmarshall@users.sourceforge.net>
Mon, 28 Aug 2017 13:05:52 +0000 (14:05 +0100)
committerKeith Marshall <keithmarshall@users.sourceforge.net>
Mon, 28 Aug 2017 13:05:52 +0000 (14:05 +0100)
w32api/ChangeLog
w32api/include/winuser.h

index 69787fa..71c859c 100644 (file)
@@ -1,5 +1,14 @@
 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
 
+       Resolve secondary issue arising from MinGW-Bug [#2350]
+
+       * include/winuser.h (GetTitleBarInfo)
+       [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
+       it conflicted with current MSDN documentation, so now falls within...
+       [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
+
+2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
+
        Resolve MinGW-Bug [#2350]
 
        * include/winuser.h (GetTitleBarInfo): Move prototype after...
index 6939e6a..f4f722a 100644 (file)
@@ -4403,7 +4403,6 @@ typedef struct
   DWORD                        dwTimeout;
 } FLASHWINFO, *PFLASHWINFO;
 
-#if _WIN32_WINDOWS >= _WIN32_WINDOWS_98
 #define CCHILDREN_TITLEBAR     5
 
 typedef struct tagTITLEBARINFO
@@ -4413,7 +4412,6 @@ typedef struct tagTITLEBARINFO
 } TITLEBARINFO, *PTITLEBARINFO, *LPTITLEBARINFO;
 
 WINUSERAPI BOOL WINAPI GetTitleBarInfo (HWND, PTITLEBARINFO);
-#endif /* WINDOWS >= Win98 */
 
 WINUSERAPI BOOL WINAPI BlockInput(BOOL);
 WINUSERAPI BOOL WINAPI FlashWindowEx (PFLASHWINFO);