- Timestamp:
- Jul 4, 2016 3:54:28 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c
r60193 r62013 31 31 32 32 #include "VirtualBox.h" 33 #include <VBox/cdefs.h> /* for VBOX_STRICT */ 33 34 #include <VBox/log.h> 34 35 #include <iprt/alloca.h> … … 1702 1703 DECLINLINE(bool) vbpsIsTypeLibIdToRemove(PRTUTF16 pwszTypeLibId) 1703 1704 { 1705 AssertCompile(RT_ELEMENTS(g_apwszTypeLibIds) == 2); 1704 1706 #ifdef VBOX_STRICT 1705 1707 static bool s_fDoneStrict = false; … … 1708 1710 { 1709 1711 Assert(RT_ELEMENTS(g_apwszTypeLibIds) == 2); 1710 Assert(g_apwszTypeLibIds[0] == '{');1711 Assert(g_apwszTypeLibIds[1] == '{');1712 Assert(g_apwszTypeLibIds[0][0] == '{'); 1713 Assert(g_apwszTypeLibIds[1][0] == '{'); 1712 1714 Assert(RT_C_IS_XDIGIT(g_apwszTypeLibIds[0][1])); 1713 1715 Assert(RT_C_IS_XDIGIT(g_apwszTypeLibIds[1][1])); … … 1717 1719 } 1718 1720 #endif 1719 AssertCompile(RT_ELEMENTS(g_apwszTypeLibIds) == 2);1720 1721 1721 1722 /* … … 1753 1754 DECLINLINE(bool) vbpsIsProxyStubClsIdToRemove(PRTUTF16 pwszProxyStubId) 1754 1755 { 1756 AssertCompile(RT_ELEMENTS(g_apwszProxyStubClsIds) == 2); 1755 1757 #ifdef VBOX_STRICT 1756 1758 static bool s_fDoneStrict = false; … … 1759 1761 { 1760 1762 Assert(RT_ELEMENTS(g_apwszProxyStubClsIds) == 2); 1761 Assert(g_apwszProxyStubClsIds[0] == '{');1762 Assert(g_apwszProxyStubClsIds[1] == '{');1763 Assert(g_apwszProxyStubClsIds[0][0] == '{'); 1764 Assert(g_apwszProxyStubClsIds[1][0] == '{'); 1763 1765 Assert(RT_C_IS_XDIGIT(g_apwszProxyStubClsIds[0][1])); 1764 1766 Assert(RT_C_IS_XDIGIT(g_apwszProxyStubClsIds[1][1])); … … 1768 1770 } 1769 1771 #endif 1770 AssertCompile(RT_ELEMENTS(g_apwszProxyStubClsIds) == 2);1771 1772 1772 1773 /*
Note:
See TracChangeset
for help on using the changeset viewer.