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.

54 lines
764 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. wzcdlg.h
  5. Abstract:
  6. Header file for wzcdlg
  7. Author:
  8. Deonb 21-March-2001
  9. Environment:
  10. User Level: Win32
  11. Revision History:
  12. --*/
  13. # ifdef __cplusplus
  14. extern "C" {
  15. # endif
  16. BOOL
  17. WZCDlgMain (
  18. IN HINSTANCE hInstance,
  19. IN DWORD dwReason,
  20. IN LPVOID lpReserved OPTIONAL);
  21. HRESULT
  22. WZCCanShowBalloon (
  23. IN const GUID * pGUIDConn,
  24. IN const PCWSTR pszConnectionName,
  25. IN OUT BSTR * pszBalloonText,
  26. IN OUT BSTR * pszCookie
  27. );
  28. HRESULT
  29. WZCOnBalloonClick (
  30. IN const GUID * pGUIDConn,
  31. IN const BSTR pszConnectionName,
  32. IN const BSTR szCookie
  33. );
  34. # ifdef __cplusplus
  35. }
  36. # endif