mirror of https://github.com/tongzx/nt5src
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
30 lines
389 B
// Spewview: remote debug spew monitor
|
|
//
|
|
// Copyright (c) 2000 Microsoft Corp.
|
|
//
|
|
// Thread to read remote debug spew
|
|
//
|
|
// 20 Mar 2000 sburns
|
|
|
|
|
|
|
|
#ifndef READERTHREAD_HPP_INCLUDED
|
|
#define READERTHREAD_HPP_INCLUDED
|
|
|
|
|
|
|
|
struct ReaderThreadParams
|
|
{
|
|
HWND hwnd;
|
|
int* endFlag;
|
|
String appName;
|
|
};
|
|
|
|
|
|
|
|
void _cdecl
|
|
ReaderThreadProc(void* p);
|
|
|
|
|
|
|
|
#endif // READERTHREAD_HPP_INCLUDED
|