Changeset 13370 in vbox for trunk/src/recompiler_new/osdep.h
- Timestamp:
- Oct 17, 2008 11:58:09 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/osdep.h
r13359 r13370 9 9 #include <iprt/string.h> 10 10 11 #ifndef _MSC_VER 11 12 #define qemu_snprintf(pszBuf, cbBuf, ...) RTStrPrintf((pszBuf), (cbBuf), __VA_ARGS__) 13 #else 14 #define qemu_snprintf RTStrPrintf 15 #endif 12 16 #define qemu_vsnprintf(pszBuf, cbBuf, pszFormat, args) \ 13 17 RTStrPrintfV((pszBuf), (cbBuf), (pszFormat), (args))
Note:
See TracChangeset
for help on using the changeset viewer.