Changeset 11309 in vbox for trunk/include
- Timestamp:
- Aug 8, 2008 11:25:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r11225 r11309 426 426 #else 427 427 # define GCSTRING(pR0String) ("<GC_STRING>") 428 #endif429 430 /** @def HCSTRING431 * Macro which in GC will return a dummy string while in HC will return432 * the parameter.433 *434 * This is typically used to wrap description strings in structures shared435 * between HC and GC. The intention is to avoid the \#ifdef IN_GC kludge.436 *437 * @param pHCString The HC string. Only referenced in HC.438 * @deprecated Use R3STRING or R0STRING instead.439 */440 #ifdef IN_GC441 # define HCSTRING(pHCString) ("<HC_STRING>")442 #else443 # define HCSTRING(pHCString) (pHCString)444 428 #endif 445 429
Note:
See TracChangeset
for help on using the changeset viewer.