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.

62 lines
816 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. C2DLL.H
  5. Abstract:
  6. define the exported routines, datatypes and constants of the
  7. C2FUNCS DLL
  8. Author:
  9. Bob Watson (a-robw)
  10. Revision History:
  11. 23 Dec 94
  12. --*/
  13. #ifndef _C2FUNCS_H_
  14. #define _C2FUNCS_H_
  15. #ifdef _UNICODE
  16. #typedef NEWCPLINFO WNEWCPLINFO
  17. #else
  18. typedef struct _NEWCPLINFO { // ncpli
  19. DWORD dwSize;
  20. DWORD dwFlags;
  21. DWORD dwHelpContext;
  22. LONG lData;
  23. HICON hIcon;
  24. WCHAR szName[32];
  25. WCHAR szInfo[64];
  26. WCHAR szHelpFile[128];
  27. } WNEWCPLINFO;
  28. #endif
  29. HINSTANCE
  30. GetDllInstance (
  31. VOID
  32. );
  33. int
  34. DisplayDllMessageBox (
  35. IN HWND hWnd,
  36. IN UINT nMessageId,
  37. IN UINT nTitleId,
  38. IN UINT nStyle
  39. );
  40. #endif // _C2FUNCS_H_