Fixed SetLocalTime prototype.
This commit is contained in:
parent
89f079bfd1
commit
bada25d5da
|
@ -1493,9 +1493,9 @@ DWORD WINAPI SetFilePointer(HFILE,LONG,LPLONG,DWORD);
|
||||||
BOOL WINAPI SetFileSecurityA(LPCSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR);
|
BOOL WINAPI SetFileSecurityA(LPCSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR);
|
||||||
BOOL WINAPI SetFileSecurityW(LPCWSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR);
|
BOOL WINAPI SetFileSecurityW(LPCWSTR,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR);
|
||||||
#define SetFileSecurity WINELIB_NAME_AW(SetFileSecurity)
|
#define SetFileSecurity WINELIB_NAME_AW(SetFileSecurity)
|
||||||
BOOL WINAPI SetFileTime(HFILE,const FILETIME*,const FILETIME*,
|
BOOL WINAPI SetFileTime(HFILE,const FILETIME*,const FILETIME*,const FILETIME*);
|
||||||
const FILETIME*);
|
|
||||||
BOOL WINAPI SetHandleInformation(HANDLE,DWORD,DWORD);
|
BOOL WINAPI SetHandleInformation(HANDLE,DWORD,DWORD);
|
||||||
|
BOOL WINAPI SetLocalTime(const SYSTEMTIME*);
|
||||||
BOOL WINAPI SetPriorityClass(HANDLE,DWORD);
|
BOOL WINAPI SetPriorityClass(HANDLE,DWORD);
|
||||||
BOOL WINAPI SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR,BOOL,PACL,BOOL);
|
BOOL WINAPI SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR,BOOL,PACL,BOOL);
|
||||||
BOOL WINAPI SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR,PSID,BOOL);
|
BOOL WINAPI SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR,PSID,BOOL);
|
||||||
|
@ -1766,9 +1766,6 @@ BOOL WINAPI WriteProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR);
|
||||||
LPSTR WINAPI lstrcatA(LPSTR,LPCSTR);
|
LPSTR WINAPI lstrcatA(LPSTR,LPCSTR);
|
||||||
LPWSTR WINAPI lstrcatW(LPWSTR,LPCWSTR);
|
LPWSTR WINAPI lstrcatW(LPWSTR,LPCWSTR);
|
||||||
#define lstrcat WINELIB_NAME_AW(lstrcat)
|
#define lstrcat WINELIB_NAME_AW(lstrcat)
|
||||||
LPSTR WINAPI lstrcatnA(LPSTR,LPCSTR,INT);
|
|
||||||
LPWSTR WINAPI lstrcatnW(LPWSTR,LPCWSTR,INT);
|
|
||||||
#define lstrcatn WINELIB_NAME_AW(lstrcatn)
|
|
||||||
LPSTR WINAPI lstrcpyA(LPSTR,LPCSTR);
|
LPSTR WINAPI lstrcpyA(LPSTR,LPCSTR);
|
||||||
LPWSTR WINAPI lstrcpyW(LPWSTR,LPCWSTR);
|
LPWSTR WINAPI lstrcpyW(LPWSTR,LPCWSTR);
|
||||||
#define lstrcpy WINELIB_NAME_AW(lstrcpy)
|
#define lstrcpy WINELIB_NAME_AW(lstrcpy)
|
||||||
|
|
|
@ -44,7 +44,7 @@ VOID WINAPI GetLocalTime(LPSYSTEMTIME systime)
|
||||||
* FIXME: correct ? Is the timezone param of settimeofday() needed ?
|
* FIXME: correct ? Is the timezone param of settimeofday() needed ?
|
||||||
* I don't have any docu about SetLocal/SystemTime(), argl...
|
* I don't have any docu about SetLocal/SystemTime(), argl...
|
||||||
*/
|
*/
|
||||||
VOID WINAPI SetLocalTime(LPSYSTEMTIME systime)
|
BOOL WINAPI SetLocalTime(const SYSTEMTIME *systime)
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
struct tm t;
|
struct tm t;
|
||||||
|
|
Loading…
Reference in New Issue