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.

85 lines
2.0 KiB

  1. #define STRICT
  2. #include <windows.h>
  3. #include <windowsx.h>
  4. #include <shellapi.h>
  5. //#include "resource.h"
  6. #include <rasc.h>
  7. #include <raserr.h>
  8. // These are used in inecfg.h but not defined in Win 16 Land
  9. #define CHAR char
  10. typedef long HRESULT;
  11. typedef BOOL FAR *LPBOOL;
  12. // Selected codes from WINERROR.H
  13. #define ERROR_SUCCESS 0L
  14. // The MFC 1.52 build environement does not define _loadds for WINAPI
  15. // but we need it defined.
  16. #ifdef WINAPI
  17. #undef WINAPI
  18. #endif
  19. #define WINAPI _loadds _far _pascal
  20. #ifndef RC_INVOKED
  21. #include <inetcfg.h>
  22. #endif
  23. //
  24. // Define the sections and key names used in iedial.ini
  25. //
  26. #define IEDIAL_INI "iedial.ini"
  27. #define IEDIAL_DEF_SECTION "Default"
  28. #define IEDIAL_DEF_DEFCONFILE "DefaultConnectionFile"
  29. #define IEDIAL_EXE "iedial.exe"
  30. // Define the sections and key names used in iexplore.ini
  31. #define EXP_INI "iexplore.ini"
  32. #define EXP_YES "yes"
  33. #define EXP_NO "no"
  34. //
  35. // !!!!!!! Make sure you leave the extra space after sign-up
  36. //
  37. #define CRYPTO_KEY "sign-up "
  38. //
  39. // Sections
  40. //
  41. #define EXP_SVC "Services"
  42. #define EXP_MAIL "NewMailUser"
  43. #define EXP_NEWS "Services"
  44. //
  45. // Keys
  46. //
  47. #define EXP_SVC_ENABLE_PROXY "Enable Proxy"
  48. #define EXP_SVC_HTTP_PROXY "HTTP_Proxy_Server"
  49. #define EXP_SVC_OVERIDE_PROXY "No_Proxy"
  50. #define EXP_MAIL_EMAILNAME "Email_Name"
  51. #define EXP_MAIL_EMAILADDR "Email_Address"
  52. #define EXP_MAIL_POP_LOGON_NAME "Email_POP_Name"
  53. #define EXP_MAIL_POP_LOGON_PWD "Email_POP_Pwd"
  54. #define EXP_MAIL_POP_SERVER "Email_POP_Server"
  55. #define EXP_MAIL_SMTP_SERVER "Email_SMTP_Server"
  56. #define EXP_NEWS_ENABLED "NNTP_Enabled"
  57. #define EXP_NEWS_LOGON_NAME "NNTP_MailName"
  58. #define EXP_NEWS_LOGON_PWD "NNTP_Use_Auth"
  59. #define EXP_NEWS_SERVER "NNTP_Server"
  60. #define EXP_NEWS_EMAIL_NAME "NNTP_MailAddr"
  61.