mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-08 16:37:12 +00:00
48a75a7029
Co-authored-by: Maxime Meignan <maxime.meignan@wavestone.com>
7 lines
144 B
C
7 lines
144 B
C
#include <Windows.h>
|
|
|
|
typedef struct _LINKED_LIST {
|
|
struct _LINKED_LIST* next;
|
|
} LINKED_LIST, * PLINKED_LIST;
|
|
|
|
VOID freeLinkedList(PVOID head); |