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
769 B

  1. #include <windows.h>
  2. #include <mapi.h>
  3. #include <mapix.h>
  4. #include <tchar.h>
  5. #include "faxmapi.h"
  6. #include "faxutil.h"
  7. #include "winfax.h"
  8. #include "faxreg.h"
  9. #include "profinfo.h"
  10. #include "resource.h"
  11. #define WM_MAPILOGON (WM_USER + 100)
  12. extern BOOL MapiIsInitialized;
  13. extern PSERVICEMESSAGEBOX ServiceMessageBox;
  14. extern BOOL ServiceDebug;
  15. extern HINSTANCE MyhInstance;
  16. //
  17. // mapi.cpp
  18. //
  19. BOOL
  20. InitializeMapi(
  21. VOID
  22. );
  23. VOID
  24. DoMapiLogon(
  25. PPROFILE_INFO ProfileInfo
  26. );
  27. //
  28. // util.cpp
  29. //
  30. VOID
  31. InitializeStringTable(
  32. VOID
  33. );
  34. LPTSTR
  35. GetString(
  36. DWORD InternalId
  37. );
  38. LPTSTR
  39. GetLastErrorText(
  40. DWORD ErrorCode
  41. );
  42. //
  43. // email.cpp
  44. //
  45. BOOL
  46. InitializeEmail(
  47. VOID
  48. );