mirror of
https://github.com/reactos/reactos.git
synced 2026-09-14 05:41:02 +08:00
XML code stolen from the xmlbuildsystem branch, we need to merge this when merging the xmlbuildsystem back into trunk svn path=/trunk/; revision=13656
24 lines
476 B
C++
24 lines
476 B
C++
// ssprintf.h
|
|
|
|
#ifndef SSPRINTF_H
|
|
#define SSPRINTF_H
|
|
|
|
#include <string>
|
|
#include <stdarg.h>
|
|
|
|
std::string ssprintf ( const char* fmt, ... );
|
|
std::string ssvprintf ( const char* fmt, va_list args );
|
|
|
|
std::wstring sswprintf ( const wchar_t* fmt, ... );
|
|
std::wstring sswvprintf ( const wchar_t* fmt, va_list args );
|
|
|
|
#ifdef _UNICODE
|
|
#define sstprintf sswprintf
|
|
#define sstvprintf sswvprintf
|
|
#else
|
|
#define sstprintf ssprintf
|
|
#define sstvprintf ssvprintf
|
|
#endif
|
|
|
|
#endif//SSPRINTF_H
|