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.

64 lines
2.0 KiB

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. StrucHdr.h
  5. Abstract:
  6. This module predefines the structures for important data structures so that we can always talk about them....
  7. even though they're not defined yet.
  8. Author:
  9. Joe Linn [joelinn] 8-19-94
  10. Revision History:
  11. --*/
  12. #ifndef _RDBSSSTRUCHDR_
  13. #define _RDBSSSTRUCHDR_
  14. #define IMPORTANT_STRUCTURE(x) struct _##x; typedef struct _##x *P##x
  15. typedef struct _NODE_TYPE_CODE_AND_SIZE *PNODE_TYPE_CODE_AND_SIZE;
  16. typedef struct _RX_PREFIX_ENTRY *PRX_PREFIX_ENTRY;
  17. typedef struct _RX_PREFIX_TABLE *PRX_PREFIX_TABLE;
  18. typedef struct _RX_FSD_DISPATCH_VECTOR *PRX_FSD_DISPATCH_VECTOR;
  19. typedef struct _RDBSS_DATA *PRDBSS_DATA;
  20. typedef struct _RDBSS_EXPORTS *PRDBSS_EXPORTS;
  21. typedef struct _VCB *PVCB;
  22. typedef struct _RDBSS_DEVICE_OBJECT *PRDBSS_DEVICE_OBJECT;
  23. typedef struct _FILE_NAME_NODE *PFILE_NAME_NODE;
  24. typedef struct _REPINNED_BCBS *PREPINNED_BCBS;
  25. typedef struct _RDBSS_IO_CONTEXT *PRDBSS_IO_CONTEXT;
  26. typedef struct _IO_RUNS *PIO_RUNS;
  27. typedef struct _DELETE_CONTEXT *PDELETE_CONTEXT;
  28. typedef struct _CLOSE_CONTEXT *PCLOSE_CONTEXT;
  29. typedef struct _CLEAN_AND_DIRTY_VOLUME_PACKET *PCLEAN_AND_DIRTY_VOLUME_PACKET;
  30. typedef struct _SRV_CALL *PSRV_CALL;
  31. typedef struct _NET_ROOT *PNET_ROOT;
  32. typedef struct _V_NET_ROOT *PV_NET_ROOT;
  33. typedef struct _NON_PAGED_FCB *PNON_PAGED_FCB;
  34. typedef struct _FCB *PFCB;
  35. typedef struct _SRV_OPEN *PSRV_OPEN;
  36. typedef struct _FOBX *PFOBX;
  37. typedef struct _RX_CONTEXT *PRX_CONTEXT;
  38. typedef struct _LOWIO_CONTEXT *PLOWIO_CONTEXT;
  39. typedef struct _EA_RANGE *PEA_RANGE;
  40. typedef struct _MINIRDR_DISPATCH *PMINIRDR_DISPATCH;
  41. typedef struct _RDBSS_EXPORTS *PRDBSS_EXPORTS;
  42. typedef struct _MRX_SRVCALL_CALLBACK_CONTEXT *PMRX_SRVCALL_CALLBACK_CONTEXT;
  43. typedef struct _MRX_SRVCALLDOWN_STRUCTURE *PMRX_SRVCALLDOWN_STRUCTURE;
  44. typedef struct _MRX_CREATENETROOT_CONTEXT *PMRX_CREATENETROOT_CONTEXT;
  45. #endif // _RDBSSSTRUCHDR_
  46.