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.

76 lines
1.7 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 bIsDiagnosisChecked;
  39. BOOL bNotifyOnce;
  40. DWORD dwTimeInterval;
  41. WCHAR wchFileName[ MAX_PATH ];
  42. } DATAOBJECT , *PDATAOBJECT;
  43. #define SIZEOF( x ) sizeof( x ) / sizeof( x[0] )
  44. #ifdef DBG
  45. #define ODS OutputDebugString
  46. #define DBGMSG( x , y ) \
  47. {\
  48. TCHAR tchErr[80]; \
  49. wsprintf( tchErr , x , y ); \
  50. ODS( tchErr ); \
  51. }
  52. #else
  53. #define ODS
  54. #define DBGMSG
  55. #endif
  56. // TODO: reference additional headers your program requires here
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)