Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

25
sdk/include/ddk/rxtimer.h Normal file
View 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