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.
23 lines
691 B
23 lines
691 B
/**************************************************************************************************
|
|
|
|
FILENAME: RemMsg.h
|
|
|
|
COPYRIGHT© 2001 Microsoft Corporation and Executive Software International, Inc.
|
|
|
|
DESCRIPTION:
|
|
Remote message prototypes.
|
|
|
|
***************************************************************************************************/
|
|
|
|
//Sends a text message to a remote process so we can pop up MessageBoxes on remote machines.
|
|
BOOL
|
|
RemoteMessageBox(
|
|
TCHAR* cMsg,
|
|
TCHAR* cTitle
|
|
);
|
|
|
|
//Takes the message from another process and displays a MessageBox here (compliment to RemoteMessageBox).
|
|
BOOL
|
|
PrintRemoteMessageBox(
|
|
TCHAR* pText
|
|
);
|