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.

75 lines
1.6 KiB

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  6. #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
  7. #include <nt.h>
  8. #include <ntrtl.h>
  9. #include <nturtl.h>
  10. // C RunTime Header Files
  11. #include <windows.h>
  12. #include <shellapi.h>
  13. #include <stdio.h>
  14. #include <commctrl.h>
  15. #include <dlgs.h>
  16. #include "resource.h"
  17. #include <stdlib.h>
  18. #include<commdlg.h>
  19. #include <license.h>
  20. #include <tlsapi.h>
  21. #include <tlsapip.h>
  22. //////////////////////////////////////////////////////////////////////////////
  23. typedef struct __ServerEnumData {
  24. DWORD dwNumServer;
  25. long dwDone;
  26. HWND hList;
  27. } ServerEnumData;
  28. typedef struct _list
  29. {
  30. LPTSTR pszMachineName;
  31. LPTSTR pszTimeFormat;
  32. LPTSTR pszType;
  33. _list *pNext;
  34. } LIST , *PLIST;
  35. typedef struct _DataObject
  36. {
  37. BOOL bIsChecked;
  38. BOOL bNotifyOnce;
  39. DWORD dwTimeInterval;
  40. WCHAR wchFileName[ MAX_PATH ];
  41. } DATAOBJECT , *PDATAOBJECT;
  42. #define SIZEOF( x ) sizeof( x ) / sizeof( x[0] )
  43. #ifdef DBG
  44. #define ODS OutputDebugString
  45. #define DBGMSG( x , y ) \
  46. {\
  47. TCHAR tchErr[80]; \
  48. wsprintf( tchErr , x , y ); \
  49. ODS( tchErr ); \
  50. }
  51. #else
  52. #define ODS
  53. #define DBGMSG
  54. #endif
  55. // TODO: reference additional headers your program requires here
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)