mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 06:12:59 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
25
sdk/include/ddk/rxtimer.h
Normal file
25
sdk/include/ddk/rxtimer.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef _RXTIMER_H_
|
||||
#define _RXTIMER_H_
|
||||
|
||||
typedef struct _RX_WORK_ITEM_
|
||||
{
|
||||
RX_WORK_QUEUE_ITEM WorkQueueItem;
|
||||
ULONG LastTick;
|
||||
ULONG Options;
|
||||
} RX_WORK_ITEM, *PRX_WORK_ITEM;
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
RxPostOneShotTimerRequest(
|
||||
_In_ PRDBSS_DEVICE_OBJECT pDeviceObject,
|
||||
_In_ PRX_WORK_ITEM pWorkItem,
|
||||
_In_ PRX_WORKERTHREAD_ROUTINE Routine,
|
||||
_In_ PVOID pContext,
|
||||
_In_ LARGE_INTEGER TimeInterval);
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
RxInitializeRxTimer(
|
||||
VOID);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue