Changeset 7508 for trunk/src/comctl32/comctl32undoc.c
- Timestamp:
- Nov 30, 2001, 8:02:33 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32undoc.c
r7502 r7508 36 36 37 37 DEFAULT_DEBUG_CHANNEL(commctrl); 38 39 #ifdef __WIN32OS2__40 #undef FIXME41 //#undef TRACE42 #ifdef DEBUG43 // PH 2001-11-3044 // this macro definition causes the control leave the scope of a45 // non-curly-braced preceeding if statement. Therefore,46 // if (p!=NULL)47 // TRACE("p->a=%d", p->a)48 // crashes.49 //50 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT51 // !!! ARE PUT INTO CURLY BRACES52 #define FIXME WriteLog("FIXME COMCTL32: %s", __FUNCTION__); WriteLog53 #else54 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)55 #endif56 #endif57 38 58 39 extern HANDLE COMCTL32_hHeap; /* handle to the private heap */ … … 1358 1339 for (i = 0; i < hdsa->nItemSize; i += 4) { 1359 1340 p = *(DWORD**)((char *) pSrc + i); 1360 if (IsBadStringPtrA ((char*)p, 256)) 1361 { 1362 TRACE("-- %d=%p\n", i, (DWORD*)p); 1363 } 1364 else 1365 { 1366 TRACE("-- %d=%p [%s]\n", i, p, debugstr_a((char*)p)); 1367 } 1341 if (IsBadStringPtrA ((char*)p, 256)) 1342 TRACE("-- %d=%p\n", i, (DWORD*)p); 1343 else 1344 TRACE("-- %d=%p [%s]\n", i, p, debugstr_a((char*)p)); 1368 1345 } 1369 1346
Note:
See TracChangeset
for help on using the changeset viewer.