Changeset 2033 for trunk/src/user32/win32class.h
- Timestamp:
- Dec 9, 1999, 1:54:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32class.h
r1762 r2033 1 /* $Id: win32class.h,v 1. 5 1999-11-17 17:04:54 cbratschiExp $ */1 /* $Id: win32class.h,v 1.6 1999-12-09 00:53:37 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Managment Code for OS/2 … … 16 16 { 17 17 public: 18 Win32WndClass(WNDCLASSEXA *wndclass, BOOL isUnicode = FALSE);18 Win32WndClass(WNDCLASSEXA *wndclass, BOOL fUnicode = FALSE); 19 19 ~Win32WndClass(); 20 20 21 ULONG getClassLongA(int index, BOOL isUnicode = FALSE);21 ULONG getClassLongA(int index, BOOL fUnicode = FALSE); 22 22 ULONG getClassLongW(int index) 23 23 { … … 26 26 WORD getClassWord(int index); 27 27 28 ULONG setClassLongA(int index, LONG lNewVal, BOOL isUnicode = FALSE);28 ULONG setClassLongA(int index, LONG lNewVal, BOOL fUnicode = FALSE); 29 29 ULONG setClassLongW(int index, LONG lNewVal) 30 30 { … … 56 56 DWORD GetWindowCount() { return cWindows; }; 57 57 58 BOOL hasClassName(LPSTR classname, BOOL fUnicode = 0);58 BOOL hasClassName(LPSTR classname, BOOL fUnicode = FALSE); 59 59 60 60 BOOL isAppClass(ULONG curProcessId);
Note:
See TracChangeset
for help on using the changeset viewer.