Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
586 B

  1. #ifndef __LIST_H__
  2. #define __LIST_H__
  3. #include "shdcom.h"
  4. typedef struct node {
  5. struct node *next;
  6. LPCOPYPARAMS lpCP;
  7. int iShadowStatus;
  8. int iFileStatus;
  9. unsigned int uAction;
  10. SHADOWINFO sSI; // tHACK: too BIG!!!
  11. WIN32_FIND_DATA sFind32Local;
  12. WIN32_FIND_DATA sFind32Remote;
  13. } node;
  14. void killList(node *);
  15. node *
  16. insertList(
  17. node **thisList,
  18. LPCOPYPARAMS aNode,
  19. LPSHADOWINFO lpSI,
  20. LPWIN32_FIND_DATA lpFind32Local,
  21. LPWIN32_FIND_DATA lpFind32Remote,
  22. int iShadowStatus,
  23. int iFileStatus,
  24. unsigned int uAction);
  25. #endif