Changeset 7508 for trunk/src/ole32/storage32.c
- Timestamp:
- Nov 30, 2001, 8:02:33 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/storage32.c
r7502 r7508 37 37 #define FILE_BEGIN 0 38 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 TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog53 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog54 #else55 #define TRACE 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)56 #define FIXME 1 ? (void)0 : (void)((int (*)(char *, ...)) NULL)57 #endif58 #endif59 39 60 40 … … 1388 1368 1389 1369 if ((ciidExclude != 0) || (rgiidExclude != NULL) || (snbExclude != NULL)) 1390 {1391 1370 FIXME("Exclude option not implemented\n"); 1392 }1393 1371 1394 1372 TRACE("(%p, %ld, %p, %p, %p)\n", … … 5359 5337 5360 5338 if (grfMode & STGM_TRANSACTED) 5361 {5362 5339 FIXME("Transacted mode not implemented.\n"); 5363 }5364 5340 5365 5341 /* … … 5967 5943 /* All other cases */ 5968 5944 if (stgm & ~ (STGM_CREATE|STGM_CONVERT)) 5969 { 5970 FIXME("unhandled storage mode : 0x%08lx\n",stgm & ~ (STGM_CREATE|STGM_CONVERT)); 5971 } 5945 FIXME("unhandled storage mode : 0x%08lx\n",stgm & ~ (STGM_CREATE|STGM_CONVERT)); 5972 5946 return CREATE_NEW; 5973 5947 }
Note:
See TracChangeset
for help on using the changeset viewer.