00001 // winutil.h 00002 // 00003 // Copyright (C) 2002, Chris Laurel <claurel@shatters.net> 00004 // 00005 // Miscellaneous useful Windows-related functions. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 00012 #ifndef _WINUTIL_H_ 00013 #define _WINUTIL_H_ 00014 00015 #include <windows.h> 00016 #include <commctrl.h> 00017 00018 void SetMouseCursor(LPCTSTR lpCursor); 00019 void CenterWindow(HWND hParent, HWND hWnd); 00020 void RemoveButtonDefaultStyle(HWND hWnd); 00021 void AddButtonDefaultStyle(HWND hWnd); 00022 00023 #endif
1.4.1