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