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.

23 lines
691 B

  1. /**************************************************************************************************
  2. FILENAME: RemMsg.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. DESCRIPTION:
  5. Remote message prototypes.
  6. ***************************************************************************************************/
  7. //Sends a text message to a remote process so we can pop up MessageBoxes on remote machines.
  8. BOOL
  9. RemoteMessageBox(
  10. TCHAR* cMsg,
  11. TCHAR* cTitle
  12. );
  13. //Takes the message from another process and displays a MessageBox here (compliment to RemoteMessageBox).
  14. BOOL
  15. PrintRemoteMessageBox(
  16. TCHAR* pText
  17. );