mirror of https://github.com/lianthony/NT4.0
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.
33 lines
862 B
33 lines
862 B
// DBWIN.H
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// DbWin Prototypes
|
|
//
|
|
|
|
#ifdef DBWIN
|
|
#ifndef DEBUG
|
|
#error You must #define DEBUG to get DBWIN
|
|
#endif // ~DEBUG
|
|
|
|
BOOL FDbWinCreate();
|
|
|
|
LRESULT CALLBACK WndProcDbWin(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
void OutputDbWinString(const TCHAR * szOutputString);
|
|
|
|
#define wplMagicKey 0xFFFF // Arbitrary Chosen
|
|
|
|
struct DBWINREGINFO
|
|
{
|
|
WINDOWPLACEMENT wpl; // Placement of the window
|
|
BOOL fTopMost; // Window is always on top
|
|
BOOL fSaveToClipboard; // Copy the content of DbWin to the Clipboard
|
|
};
|
|
|
|
extern HWND hwndDbWin;
|
|
extern HWND hwndDbWinEdit;
|
|
extern BOOL fSendSzToDbWinEdit; // Send the debug string to hwndDbWinEdit
|
|
extern BOOL fSendSzToDebugger; // Send the debug string to OutputDebugString
|
|
extern DBWINREGINFO dbwinreginfo;
|
|
|
|
#endif // DBWIN
|