Guest User

Untitled

a guest
May 8th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef _LIST
  2. #define _LIST
  3.  
  4. #include <windows.h>
  5.  
  6. struct node {
  7.     DWORD data;
  8.     struct node *next;
  9. } List, *PList;
  10.  
  11. #endif
Add Comment
Please, Sign In to add comment