Changeset 7502 for trunk/src/ole32
- Timestamp:
- Nov 30, 2001, 6:49:22 PM (24 years ago)
- Location:
- trunk/src/ole32
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/antimoniker.c
r6711 r7502 19 19 #undef TRACE 20 20 #ifdef DEBUG 21 // PH 2001-11-30 22 // this macro definition causes the control leave the scope of a 23 // non-curly-braced preceeding if statement. Therefore, 24 // if (p!=NULL) 25 // TRACE("p->a=%d", p->a) 26 // crashes. 27 // 28 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT 29 // !!! ARE PUT INTO CURLY BRACES 21 30 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 22 31 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog -
trunk/src/ole32/bindctx.c
r6711 r7502 21 21 #undef TRACE 22 22 #ifdef DEBUG 23 // PH 2001-11-30 24 // this macro definition causes the control leave the scope of a 25 // non-curly-braced preceeding if statement. Therefore, 26 // if (p!=NULL) 27 // TRACE("p->a=%d", p->a) 28 // crashes. 29 // 30 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT 31 // !!! ARE PUT INTO CURLY BRACES 23 32 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 24 33 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog -
trunk/src/ole32/compobj.c
r7355 r7502 41 41 #undef TRACE 42 42 #ifdef DEBUG 43 // PH 2001-11-30 44 // this macro definition causes the control leave the scope of a 45 // 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 STATEMENT 51 // !!! ARE PUT INTO CURLY BRACES 43 52 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 44 53 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog … … 1493 1502 1494 1503 if (pServerInfo!=NULL) 1504 { 1495 1505 FIXME("() non-NULL pServerInfo not supported!\n"); 1506 } 1496 1507 1497 1508 /* -
trunk/src/ole32/compositemoniker.c
r6711 r7502 21 21 #undef TRACE 22 22 #ifdef DEBUG 23 // PH 2001-11-30 24 // this macro definition causes the control leave the scope of a 25 // non-curly-braced preceeding if statement. Therefore, 26 // if (p!=NULL) 27 // TRACE("p->a=%d", p->a) 28 // crashes. 29 // 30 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT 31 // !!! ARE PUT INTO CURLY BRACES 23 32 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 24 33 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog -
trunk/src/ole32/oleobj.c
r6711 r7502 17 17 #undef TRACE 18 18 #ifdef DEBUG 19 // PH 2001-11-30 20 // this macro definition causes the control leave the scope of a 21 // non-curly-braced preceeding if statement. Therefore, 22 // if (p!=NULL) 23 // TRACE("p->a=%d", p->a) 24 // crashes. 25 // 26 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT 27 // !!! ARE PUT INTO CURLY BRACES 19 28 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 20 29 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog -
trunk/src/ole32/stg_bigblockfile.c
r6711 r7502 48 48 #undef TRACE 49 49 #ifdef DEBUG 50 // PH 2001-11-30 51 // this macro definition causes the control leave the scope of a 52 // non-curly-braced preceeding if statement. Therefore, 53 // if (p!=NULL) 54 // TRACE("p->a=%d", p->a) 55 // crashes. 56 // 57 // !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT 58 // !!! ARE PUT INTO CURLY BRACES 50 59 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 51 60 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog -
trunk/src/ole32/storage32.c
r7343 r7502 41 41 #undef TRACE 42 42 #ifdef DEBUG 43 // PH 2001-11-30 44 // this macro definition causes the control leave the scope of a 45 // 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 STATEMENT 51 // !!! ARE PUT INTO CURLY BRACES 43 52 #define TRACE WriteLog("OLE32: %s", __FUNCTION__); WriteLog 44 53 #define FIXME WriteLog("FIXME OLE32: %s", __FUNCTION__); WriteLog … … 1379 1388 1380 1389 if ((ciidExclude != 0) || (rgiidExclude != NULL) || (snbExclude != NULL)) 1390 { 1381 1391 FIXME("Exclude option not implemented\n"); 1392 } 1382 1393 1383 1394 TRACE("(%p, %ld, %p, %p, %p)\n", … … 5348 5359 5349 5360 if (grfMode & STGM_TRANSACTED) 5361 { 5350 5362 FIXME("Transacted mode not implemented.\n"); 5363 } 5351 5364 5352 5365 /* … … 5954 5967 /* All other cases */ 5955 5968 if (stgm & ~ (STGM_CREATE|STGM_CONVERT)) 5956 FIXME("unhandled storage mode : 0x%08lx\n",stgm & ~ (STGM_CREATE|STGM_CONVERT)); 5969 { 5970 FIXME("unhandled storage mode : 0x%08lx\n",stgm & ~ (STGM_CREATE|STGM_CONVERT)); 5971 } 5957 5972 return CREATE_NEW; 5958 5973 }
Note:
See TracChangeset
for help on using the changeset viewer.