Changeset 38791 in vbox for trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.h
- Timestamp:
- Sep 19, 2011 1:21:31 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74086
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.h
r32112 r38791 5 5 6 6 /* 7 * Copyright (C) 2008-201 0Oracle Corporation7 * Copyright (C) 2008-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 20 20 21 21 #if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */ 22 int _stprintf_s(TCHAR *buffer, size_t cbBuffer, const TCHAR *format, ...);22 int swprintf_s(WCHAR *buffer, size_t cbBuffer, const WCHAR *format, ...); 23 23 #endif 24 24 25 UINT VBoxGetProperty(MSIHANDLE a_hModule, TCHAR *a_pszName, TCHAR *a_pValue, DWORD a_dwSize);26 UINT VBoxSetProperty(MSIHANDLE a_hModule, TCHAR *a_pszName, TCHAR *a_pValue);25 UINT VBoxGetProperty(MSIHANDLE a_hModule, WCHAR *a_pwszName, WCHAR *a_pwszValue, DWORD a_dwSize); 26 UINT VBoxSetProperty(MSIHANDLE a_hModule, WCHAR *a_pwszName, WCHAR *a_pwszValue); 27 27 28 28 #endif /* !___VBoxInstallHelper_Common_h */
Note:
See TracChangeset
for help on using the changeset viewer.