9 #ifndef BOOST_NOWIDE_WINDOWS_HPP_INCLUDED 10 #define BOOST_NOWIDE_WINDOWS_HPP_INCLUDED 12 #ifdef BOOST_USE_WINDOWS_H 24 __declspec(dllimport)
wchar_t* __stdcall GetEnvironmentStringsW(
void);
25 __declspec(dllimport)
int __stdcall FreeEnvironmentStringsW(
wchar_t*);
26 __declspec(dllimport)
wchar_t* __stdcall GetCommandLineW(
void);
27 __declspec(dllimport)
unsigned long __stdcall GetLastError();
28 __declspec(dllimport)
void* __stdcall LocalFree(
void*);
29 __declspec(dllimport)
int __stdcall SetEnvironmentVariableW(
const wchar_t*,
const wchar_t*);
30 __declspec(dllimport)
unsigned long __stdcall GetEnvironmentVariableW(
const wchar_t*,
wchar_t*,
unsigned long);
34 __declspec(dllimport)
wchar_t** __stdcall CommandLineToArgvW(
const wchar_t*,
int*);