]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/winundef.h
add Length, Tell, SetPlaybackRate and GetPlaybackRate - use Connect instead of messag...
[wxWidgets.git] / include / wx / msw / winundef.h
index 5cacd2a37d079f08ad7583f7ad5d20f089b1eac7..1f711c2c4691e2cd06df243612a7b60c5198a0e5 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     16.05.99
 // RCS-ID:      $Id$
 // Copyright:   (c) wxWidgets team
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /* THIS SHOULD NOT BE USED since you might include it once e.g. in window.h,
     inline BOOL IsMaximized(HWND hwnd)
     {
 #ifdef __WXWINCE__
+        wxUnusedVar(hwnd);
         return FALSE;
 #else
         return IsZoomed(hwnd);
     inline HWND GetFirstChild(HWND hwnd)
     {
 #ifdef __WXWINCE__
+        wxUnusedVar(hwnd);
         return 0;
 #else
         return GetTopWindow(hwnd);
 
 #if defined(__WXWINCE__) && defined(DrawIcon) //#ifdef DrawIcon
     #undef DrawIcon
-    inline BOOL DrawIcon(HDC hdc, int x, int y, HICON hicon) 
+    inline BOOL DrawIcon(HDC hdc, int x, int y, HICON hicon)
     {
         return DrawIconEx(hdc,x,y,hicon,0,0,0,NULL, DI_NORMAL) ;
     }