mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
Fixed some issues found by winapi_check.
This commit is contained in:
parent
faf64aa9ef
commit
6e740b5b46
3 changed files with 5 additions and 20 deletions
|
@ -18,15 +18,6 @@
|
|||
#include "dplayx_messages.h"
|
||||
#include "dplayx_queue.h"
|
||||
|
||||
/* Can't seem to solve unresolved reference even with import */
|
||||
#define HACK_TIMEGETTIME
|
||||
|
||||
#if defined( HACK_TIMEGETTIME )
|
||||
static DWORD timeGetTime(void);
|
||||
#else
|
||||
#include "mmsystem.h"
|
||||
#endif
|
||||
|
||||
/* FIXME: Need to create a crit section, store and use it */
|
||||
|
||||
DEFAULT_DEBUG_CHANNEL(dplay);
|
||||
|
@ -105,7 +96,7 @@ void NS_SetRemoteComputerAsNameServer( LPVOID lpNSAddrHdr,
|
|||
HEAP_ZERO_MEMORY,
|
||||
(LPWSTR)(lpMsg+1) );
|
||||
|
||||
lpCacheNode->dwTime = timeGetTime();
|
||||
lpCacheNode->dwTime = GetTickCount();
|
||||
|
||||
DPQ_INSERT(lpCache->first, lpCacheNode, next );
|
||||
|
||||
|
@ -258,7 +249,7 @@ void NS_PruneSessionCache( LPVOID lpNSInfo )
|
|||
lpNSCache lpCache = lpNSInfo;
|
||||
lpNSCacheData lpCacheEntry;
|
||||
|
||||
DWORD dwPresentTime = timeGetTime();
|
||||
DWORD dwPresentTime = GetTickCount();
|
||||
#if defined( HACK_TIMEGETTIME )
|
||||
DWORD dwPruneTime = dwPresentTime - 2; /* One iteration with safety */
|
||||
#else
|
||||
|
@ -328,11 +319,3 @@ void NS_ReplyToEnumSessionsRequest( LPVOID lpMsg,
|
|||
|
||||
}
|
||||
|
||||
#if defined( HACK_TIMEGETTIME )
|
||||
DWORD timeGetTime(void)
|
||||
{
|
||||
static DWORD time = 0;
|
||||
|
||||
return time++;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -478,7 +478,7 @@ NTSTATUS WINAPI RtlUnicodeToOemN( LPSTR dst, DWORD dstlen, LPDWORD reslen,
|
|||
/**************************************************************************
|
||||
* RtlUpperString (NTDLL.@)
|
||||
*/
|
||||
void WINAPI RtlUpperString( STRING *dst, const STRING *src, BOOLEAN doalloc )
|
||||
void WINAPI RtlUpperString( STRING *dst, const STRING *src )
|
||||
{
|
||||
unsigned int i, len = min(src->Length, dst->MaximumLength);
|
||||
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
* NE_MODULE.module32.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_SYS_MMAN_H
|
||||
#include <sys/mman.h>
|
||||
|
|
Loading…
Reference in a new issue