mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
37 lines
No EOL
466 B
C
37 lines
No EOL
466 B
C
#ifndef QUEUE_H
|
|
#define QUEUE_H
|
|
|
|
#include <ntifs.h>
|
|
|
|
#define QUEUE_POOL_TAG 'qqqq'
|
|
|
|
typedef struct _QUEUE_NODE
|
|
{
|
|
struct _QUEUE_NODE* next;
|
|
PVOID data;
|
|
|
|
}QUEUE_NODE, *PQUEUE_NODE;
|
|
|
|
typedef struct QUEUE_HEAD
|
|
{
|
|
struct _QUEUE_NODE* start;
|
|
struct _QUEUE_NODE* end;
|
|
KSPIN_LOCK lock;
|
|
INT entries;
|
|
|
|
}QUEUE_HEAD, *PQUEUE_HEAD;
|
|
|
|
PQUEUE_HEAD QueueCreate();
|
|
|
|
VOID QueuePush(
|
|
_In_ PQUEUE_HEAD Head,
|
|
_In_ PVOID Data
|
|
);
|
|
|
|
PVOID QueuePop(
|
|
_In_ PQUEUE_HEAD Head
|
|
);
|
|
|
|
|
|
|
|
#endif |