- Timestamp:
- Mar 25, 2011 12:56:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r36428 r36429 1 1 /* $Id$ */ 2 3 2 /** @file 4 * 5 * MS COM / XPCOM Abstraction Layer: 6 * UTF-8 and UTF-16 string classes 3 * MS COM / XPCOM Abstraction Layer - UTF-8 and UTF-16 string classes. 7 4 */ 8 5 9 6 /* 10 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 11 8 * 12 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 23 20 #include <iprt/err.h> 24 21 #include <iprt/path.h> 22 #include <iprt/log.h> 25 23 26 24 namespace com … … 31 29 // not use length prefixes 32 30 const OLECHAR g_achEmptyBstr[3] = { 0, 0, 0 }; 33 const BSTR g_bstrEmpty = (BSTR) (&g_achEmptyBstr[2]);31 const BSTR g_bstrEmpty = (BSTR)&g_achEmptyBstr[2]; 34 32 35 33 /* static */
Note:
See TracChangeset
for help on using the changeset viewer.