Changeset 31857 in vbox for trunk/src/VBox/Installer/win/InstallHelper
- Timestamp:
- Aug 23, 2010 12:13:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65065
- Location:
- trunk/src/VBox/Installer/win/InstallHelper
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.cpp
r31856 r31857 22 22 #include <msi.h> 23 23 #include <msiquery.h> 24 25 26 #if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */ 27 int _stprintf_s(TCHAR *buffer, size_t cbBuffer, const TCHAR *format, ...) 28 { 29 int ret; 30 va_list args; 31 va_start(args, format); 32 ret = _vsntprintf(buffer, cbBuffer, format, args); 33 va_end(args); 34 return ret; 35 } 36 #endif 24 37 25 38 UINT VBoxGetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue, DWORD a_dwSize) -
trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.h
r31856 r31857 19 19 #define __VBoxInstallHelper_Common_h__ 20 20 21 #if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */ 22 int _stprintf_s(TCHAR *buffer, size_t cbBuffer, const TCHAR *format, ...); 23 #endif 24 21 25 UINT VBoxGetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue, DWORD a_dwSize); 22 26 UINT VBoxSetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue); -
trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp
r31856 r31857 59 59 return TRUE; 60 60 } 61 62 #if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */63 int _stprintf_s(TCHAR *buffer, size_t cbBuffer, const TCHAR *format, ...)64 {65 int ret;66 va_list args;67 va_start(args, format);68 ret = _vsntprintf(buffer, cbBuffer, format, args);69 va_end(args);70 return ret;71 }72 #endif73 61 74 62 void LogString(MSIHANDLE hInstall, TCHAR* szString, ...)
Note:
See TracChangeset
for help on using the changeset viewer.