Leaked source code of windows server 2003
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.

49 lines
1.5 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: irprops.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // irprops.h : main header file for the IRPROPS DLL
  11. //
  12. #ifndef __IRPROPS_H__
  13. #define __IRPROPS_H__
  14. #include "resource.h" // main symbols
  15. #define SINGLE_INST_MUTEX L"IRProps_75F2364F_4CE2_41BE_876C_9F685B55B775"
  16. #define WIRELESSLINK_INTERPROCESSMSG L"WirelessLinkInterprocessMsg"
  17. #define IPMSG_SIGNATURECHECK 0x02
  18. #define IPMSG_REQUESTSIGNATURE 0xFA5115AF
  19. #define IPMSG_REPLYSIGNATURE ~IPMSG_REQUESTSIGNATURE
  20. BOOL EnumWinProc(HWND hWnd, LPARAM lParam);
  21. extern HWND g_hwndPropSheet;
  22. extern UINT g_uIPMsg;
  23. #define NUM_APPLETS 1
  24. ///////////////////////////////////////////////////////////////////////////
  25. // Dll's exported functions
  26. LONG CALLBACK CPlApplet(HWND hwndCPL, UINT uMsg, LPARAM lParam1, LPARAM lParam2);
  27. int MsgBoxWinError(HWND hWndParent, DWORD Options = MB_OK | MB_ICONSTOP, DWORD Error = 0, int CaptionId = 0);
  28. ////////////////////////////////////////////////////////////////
  29. //
  30. typedef struct tagApplets {
  31. int icon; // icon resource identifier
  32. int namestring; // name-string resource identifier
  33. int descstring; // description-string resource identifier
  34. } APPLETS;
  35. /////////////////////////////////////////////////////////////////////////////
  36. #endif // __IRPROPS_H__