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
484 B

  1. /*++
  2. Copyright (c) 1985 - 1999, Microsoft Corporation
  3. Module Name:
  4. stream.h
  5. Abstract:
  6. This file implements the NT console direct I/O API
  7. Author:
  8. KazuM Apr.20.1996
  9. Revision History:
  10. --*/
  11. typedef struct _RAW_READ_DATA {
  12. PINPUT_INFORMATION InputInfo;
  13. PCONSOLE_INFORMATION Console;
  14. ULONG BufferSize;
  15. PWCHAR BufPtr;
  16. PCONSOLE_PER_PROCESS_DATA ProcessData;
  17. HANDLE HandleIndex;
  18. } RAW_READ_DATA, *PRAW_READ_DATA;