VirtualBox

Ignore:
Timestamp:
Aug 23, 2010 12:13:39 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
65065
Message:

VBoxInstallerHelper/win: Move _stprintf_s to common code base.

Location:
trunk/src/VBox/Installer/win/InstallHelper
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.cpp

    r31856 r31857  
    2222#include <msi.h>
    2323#include <msiquery.h>
     24
     25
     26#if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */
     27int _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
    2437
    2538UINT VBoxGetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue, DWORD a_dwSize)
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxCommon.h

    r31856 r31857  
    1919#define __VBoxInstallHelper_Common_h__
    2020
     21#if (_MSC_VER < 1400) /* Provide _stprintf_s to VC < 8.0. */
     22int _stprintf_s(TCHAR *buffer, size_t cbBuffer, const TCHAR *format, ...);
     23#endif
     24
    2125UINT VBoxGetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue, DWORD a_dwSize);
    2226UINT VBoxSetProperty(MSIHANDLE a_hModule, TCHAR* a_pszName, TCHAR* a_pValue);
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp

    r31856 r31857  
    5959    return TRUE;
    6060}
    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 #endif
    7361
    7462void LogString(MSIHANDLE hInstall, TCHAR* szString, ...)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette