aboutsummaryrefslogtreecommitdiff
path: root/Src/replicant/nu/queue_node.h
blob: 884780703411874195d9defbceaf985baa17bbe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <Windows.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef SLIST_ENTRY queue_node_t;
#ifdef __cplusplus
}
#endif

#else

#ifdef __cplusplus
extern "C" {
#endif

typedef struct queue_node_struct_t
{
	struct queue_node_struct_t *Next;
} queue_node_t;

#ifdef __cplusplus
}
#endif

#endif