Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef _LIST
- #define _LIST
- #include <windows.h>
- struct node {
- DWORD data;
- struct node *next;
- } List, *PList;
- node * list_insert (DWORD data, node* root);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement