• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


Commit MetaInfo

Revision83ea8a93b1bb3322cd92d0a2eabccb545586c884 (tree)
Time2017-08-28 19:07:38
AuthorKeith Marshall <keithmarshall@user...>
CommiterKeith Marshall

Log Message

Resolve MinGW-Bug [#2350]

Change Summary

Incremental Difference

--- a/w32api/ChangeLog
+++ b/w32api/ChangeLog
@@ -1,3 +1,11 @@
1+2017-08-28 Keith Marshall <keithmarshall@users.sourceforge.net>
2+
3+ Resolve MinGW-Bug [#2350]
4+
5+ * include/winuser.h (GetTitleBarInfo): Move prototype after...
6+ (PTITLEBARINFO): ...this type definition; it is used as a function
7+ argument type, so must be defined beforehand.
8+
19 2017-08-21 Keith Marshall <keithmarshall@users.sourceforge.net>
210
311 Extend testsuite to cover winsock fd_set macro operations.
--- a/w32api/include/winuser.h
+++ b/w32api/include/winuser.h
@@ -3916,10 +3916,6 @@ WINUSERAPI DWORD WINAPI GetListBoxInfo (HWND);
39163916 WINUSERAPI BOOL WINAPI GetMenuBarInfo (HWND, LONG, LONG, PMENUBARINFO);
39173917 WINUSERAPI BOOL WINAPI GetMenuInfo (HMENU, LPMENUINFO);
39183918
3919-#if _WIN32_WINDOWS >= _WIN32_WINDOWS_98
3920-WINUSERAPI BOOL WINAPI GetTitleBarInfo (HWND, PTITLEBARINFO);
3921-#endif
3922-
39233919 WINUSERAPI BOOL WINAPI GetWindowInfo (HWND, PWINDOWINFO);
39243920 WINUSERAPI BOOL WINAPI GetScrollBarInfo (HWND, LONG, PSCROLLBARINFO);
39253921
@@ -4416,6 +4412,7 @@ typedef struct tagTITLEBARINFO
44164412 DWORD rgstate[CCHILDREN_TITLEBAR+1];
44174413 } TITLEBARINFO, *PTITLEBARINFO, *LPTITLEBARINFO;
44184414
4415+WINUSERAPI BOOL WINAPI GetTitleBarInfo (HWND, PTITLEBARINFO);
44194416 #endif /* WINDOWS >= Win98 */
44204417
44214418 WINUSERAPI BOOL WINAPI BlockInput(BOOL);