Changeset 6381 for trunk/include/win/debugtools.h
- Timestamp:
- Jul 21, 2001, 11:10:49 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/debugtools.h
r5470 r6381 200 200 static char res[128]; 201 201 202 if (!src) return "(null)"; 202 if (!HIWORD(src)) 203 { 204 if (!src) return "(null)"; 205 sprintf(res, "#%04x", LOWORD(src) ); 206 return res; 207 } 203 208 if (n > sizeof(res)) return "(null)"; 204 209 … … 246 251 static char res[128]; 247 252 248 if (!src) return "(null)"; 253 if (!HIWORD(src)) 254 { 255 if (!src) return "(null)"; 256 sprintf(res, "#%04x", LOWORD(src) ); 257 return res; 258 } 249 259 if (n > sizeof(res)) return "(null)"; 250 260 if (n < 0) n = 0;
Note:
See TracChangeset
for help on using the changeset viewer.