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.

41 lines
1.2 KiB

  1. /*
  2. ** Copyright (c) 1991 Microsoft Corporation
  3. */
  4. //==============================================================================
  5. // FILE FRAME.H
  6. //
  7. // MODULE JUMBO Printer Driver, Queue Processor,
  8. // Resource Executor, & Comm Module
  9. //
  10. // PURPOSE FRAME structure format
  11. //
  12. // DESCRIBED IN Jumbo Device Driver Design Description
  13. //
  14. // EXTERNAL INTERFACES
  15. //
  16. // INTERNAL INTERFACES
  17. //
  18. // MNEMONICS
  19. //
  20. // HISTORY 07/12/91 o-rflagg Created
  21. // 01/15/92 steveflu bring up to coding conventions,
  22. // change for QP interface
  23. //
  24. //==============================================================================
  25. #ifndef _FRAME_
  26. #define _FRAME_
  27. // Don't change FRAME unless you also change the COMM driver and
  28. // the Queue Processor, and the Resource Executor, and ....
  29. typedef struct FRAMEtag
  30. {
  31. WORD wReserved;
  32. WORD wSize; // size of this block
  33. LPBYTE lpData; // pointer to frame data
  34. } FRAME;
  35. typedef FRAME FAR *LPFRAME;
  36. typedef FRAME NEAR *PFRAME;
  37. #endif // _FRAME_