NAME

CreateTimerQueueTimer  (KERNEL32.@)

SYNOPSIS

 BOOL CreateTimerQueueTimer
 (
  PHANDLE             phNewTimer,
  HANDLE              TimerQueue,
  WAITORTIMERCALLBACK Callback,
  PVOID               Parameter,
  DWORD               DueTime,
  DWORD               Period,
  ULONG               Flags
 )

DESCRIPTION

Creates a timer-queue timer. This timer expires at the specified due time (in ms), then after every specified period (in ms). When the timer expires, the callback function is called.

RETURNS

nonzero on success or zero on faillure.

BUGS

Unimplemented

IMPLEMENTATION

Defined in "winbase.h".

Implemented in "dlls/kernel32/sync.c". source.winehq.org/source/dlls/kernel32/sync.c

Debug channel "sync".


Copyright © 2007 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2007.