mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
Updat eversion number + Add missing ctypes_generation environ.txt
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
DWORD GetEnvironmentVariableA(
|
||||
[in, optional] LPCSTR lpName,
|
||||
[out, optional] LPSTR lpBuffer,
|
||||
[in] DWORD nSize
|
||||
);
|
||||
|
||||
DWORD GetEnvironmentVariableW(
|
||||
[in, optional] LPCWSTR lpName,
|
||||
[out, optional] LPWSTR lpBuffer,
|
||||
[in] DWORD nSize
|
||||
);
|
||||
|
||||
|
||||
BOOL SetEnvironmentVariableA(
|
||||
[in] LPCSTR lpName,
|
||||
[in, optional] LPCSTR lpValue
|
||||
);
|
||||
|
||||
BOOL SetEnvironmentVariableW(
|
||||
[in] LPCWSTR lpName,
|
||||
[in, optional] LPCWSTR lpValue
|
||||
);
|
||||
|
||||
PVOID GetEnvironmentStringsA();
|
||||
|
||||
PVOID GetEnvironmentStringsW();
|
||||
|
||||
BOOL SetEnvironmentStringsW(
|
||||
LPWCH NewEnvironment
|
||||
);
|
||||
|
||||
BOOL FreeEnvironmentStringsA(
|
||||
PVOID penv
|
||||
);
|
||||
|
||||
BOOL FreeEnvironmentStringsW(
|
||||
PVOID penv
|
||||
);
|
||||
Reference in New Issue
Block a user