Source code of Windows XP (NT5)
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.

30 lines
389 B

  1. // Spewview: remote debug spew monitor
  2. //
  3. // Copyright (c) 2000 Microsoft Corp.
  4. //
  5. // Thread to read remote debug spew
  6. //
  7. // 20 Mar 2000 sburns
  8. #ifndef READERTHREAD_HPP_INCLUDED
  9. #define READERTHREAD_HPP_INCLUDED
  10. struct ReaderThreadParams
  11. {
  12. HWND hwnd;
  13. int* endFlag;
  14. String appName;
  15. };
  16. void _cdecl
  17. ReaderThreadProc(void* p);
  18. #endif // READERTHREAD_HPP_INCLUDED