Changeset 21730 for branches/gcc-kmk/src/kernel32/conprop.cpp
- Timestamp:
- Oct 21, 2011, 4:52:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/conprop.cpp
r5308 r21730 70 70 ULONG ulID; // Resource ID for dialog page 71 71 PFNWP wpDlgProc; // dialog window procedure 72 P SZszStatusLineText; // Text to go on status line73 P SZszTabText; // Text to go on major tab72 PCSZ szStatusLineText; // Text to go on status line 73 PCSZ szTabText; // Text to go on major tab 74 74 ULONG idFocus; // ID of the control to get the focus first 75 75 BOOL fParent; // Is this a Parent page with minor pages … … 92 92 /**********************************************************************/ 93 93 94 static VOID ErrorMsg( PSZ szFormat,95 ... 94 static VOID ErrorMsg(PCSZ szFormat, 95 ...); 96 96 97 97 … … 195 195 }; 196 196 197 static P SZ priorities[] = {"idle", "normal", "critical", "server"};197 static PCSZ priorities[] = {"idle", "normal", "critical", "server"}; 198 198 #define NUMPRIORITIES 4 199 199 … … 216 216 #define MESSAGE_SIZE 1024 217 217 218 static VOID ErrorMsg( PSZ szFormat,219 ... 218 static VOID ErrorMsg(PCSZ szFormat, 219 ...) 220 220 { 221 221 PSZ szMsg;
Note:
See TracChangeset
for help on using the changeset viewer.