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.

56 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998.
  5. //
  6. // File: lib.h
  7. //
  8. // Contents: contains headers needed to build the lib project
  9. //
  10. // Classes:
  11. //
  12. // Notes:
  13. //
  14. // History: 04-Aug-98 rogerg Created.
  15. //
  16. //--------------------------------------------------------------------------
  17. // standard includes for MobSync lib
  18. // Version 401 is needed for RasGetAutoDialParam bug need to define WinVer 40
  19. // so work with IE 4.0.
  20. //
  21. #ifndef WINVER
  22. #define WINVER 0x400
  23. #elif WINVER < 0x400
  24. #undef WINVER
  25. #define WINVER 0x400
  26. #endif
  27. #include <objbase.h>
  28. #include <windows.h>
  29. #include <shellapi.h>
  30. #include <commctrl.h>
  31. #include <inetreg.h>
  32. #include <sensapip.h>
  33. #include "mobsync.h"
  34. #include "mobsyncp.h"
  35. #include "debug.h"
  36. #include "alloc.h"
  37. #include "critsect.h"
  38. #include "widewrap.h"
  39. #include "stringc.h"
  40. #include "smartptr.hxx"
  41. #include "xarray.hxx"
  42. #include "osdefine.h"
  43. #include "validate.h"
  44. #include "netapi.h"
  45. #include "listview.h"
  46. #include "util.hxx"
  47. #include "clsobj.h"
  48. #pragma hdrstop