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.

37 lines
1.2 KiB

  1. //*********************************************************************
  2. //* Microsoft Windows **
  3. //* Copyright(c) Microsoft Corp., 1994-1995 **
  4. //*********************************************************************
  5. //
  6. // DIALMSG.H - window messages for dial monitor app
  7. //
  8. //
  9. // HISTORY:
  10. //
  11. // 4/19/95 jeremys Created.
  12. //
  13. #ifndef _DIALMSG_H_
  14. #define _DIALMSG_H_
  15. #define WM_DIALMON_FIRST WM_USER+100
  16. // message sent to dial monitor app window indicating that there has been
  17. // winsock activity and dial monitor should reset its idle timer
  18. #define WM_WINSOCK_ACTIVITY WM_DIALMON_FIRST + 0
  19. // message sent to dial monitor app window when user changes timeout through
  20. // UI, indicating that timeout value or status has changed
  21. #define WM_REFRESH_SETTINGS WM_DIALMON_FIRST + 1
  22. // message sent to dial monitor app window to set the name of the connectoid
  23. // to monitor and eventually disconnect. lParam should be an LPSTR that
  24. // points to the name of the connectoid.
  25. #define WM_SET_CONNECTOID_NAME WM_DIALMON_FIRST + 2
  26. // message sent to dial monitor app window when app exits
  27. #define WM_IEXPLORER_EXITING WM_DIALMON_FIRST + 3
  28. #endif // _DIALMSG_H_