mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
added some missing APIs
svn path=/trunk/; revision=18144
This commit is contained in:
parent
8c42366a42
commit
1afd009025
2 changed files with 9 additions and 1 deletions
|
@ -1364,6 +1364,9 @@ DWORD WINAPI GetEnvironmentVariableW(LPCWSTR,LPWSTR,DWORD);
|
|||
BOOL WINAPI GetExitCodeProcess(HANDLE,PDWORD);
|
||||
BOOL WINAPI GetExitCodeThread(HANDLE,PDWORD);
|
||||
DWORD WINAPI GetFileAttributesA(LPCSTR);
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
BOOL WINAPI GetFileAttributesByHandle(HANDLE,LPDWORD,DWORD);
|
||||
#endif
|
||||
DWORD WINAPI GetFileAttributesW(LPCWSTR);
|
||||
BOOL WINAPI GetFileAttributesExA(LPCSTR,GET_FILEEX_INFO_LEVELS,PVOID);
|
||||
BOOL WINAPI GetFileAttributesExW(LPCWSTR,GET_FILEEX_INFO_LEVELS,PVOID);
|
||||
|
@ -1803,6 +1806,9 @@ BOOL WINAPI SetEvent(HANDLE);
|
|||
VOID WINAPI SetFileApisToANSI(void);
|
||||
VOID WINAPI SetFileApisToOEM(void);
|
||||
BOOL WINAPI SetFileAttributesA(LPCSTR,DWORD);
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
BOOL WINAPI SetFileAttributesByHandle(HANDLE,DWORD,DWORD);
|
||||
#endif
|
||||
BOOL WINAPI SetFileAttributesW(LPCWSTR,DWORD);
|
||||
DWORD WINAPI SetFilePointer(HANDLE,LONG,PLONG,DWORD);
|
||||
BOOL WINAPI SetFilePointerEx(HANDLE,LARGE_INTEGER,PLARGE_INTEGER,DWORD);
|
||||
|
|
|
@ -67,10 +67,12 @@ LONG WINAPI RegCreateKeyExA(HKEY,LPCSTR,DWORD,LPSTR,DWORD,REGSAM,LPSECURITY_ATTR
|
|||
LONG WINAPI RegCreateKeyExW(HKEY,LPCWSTR,DWORD,LPWSTR,DWORD,REGSAM,LPSECURITY_ATTRIBUTES,PHKEY,PDWORD);
|
||||
LONG WINAPI RegCreateKeyW(HKEY,LPCWSTR,PHKEY);
|
||||
LONG WINAPI RegDeleteKeyA(HKEY,LPCSTR);
|
||||
LONG WINAPI RegDeleteKeyW(HKEY,LPCWSTR);
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
LONG WINAPI RegDeleteKeyValueA(HKEY,LPCSTR,LPCSTR);
|
||||
LONG WINAPI RegDeleteKeyValueW(HKEY,LPCWSTR,LPCWSTR);
|
||||
#endif
|
||||
LONG WINAPI RegDeleteKeyW(HKEY,LPCWSTR);
|
||||
#if (_WIN32_WINNT >= 0x0600)
|
||||
LONG WINAPI RegDeleteTreeA(HKEY,LPCSTR);
|
||||
LONG WINAPI RegDeleteTreeW(HKEY,LPCWSTR);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue