home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / machine.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-23  |  731 b   |  35 lines

  1. // ===========================================================================
  2. // File: Machine.h
  3. // 
  4. // Copyright (c) 1996-1999 Microsoft Corporation.  All Rights Reserved.
  5. // ===========================================================================
  6. #ifndef _MACHINE_H_
  7. #define _MACHINE_H_
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11.  
  12. #ifdef WIN32
  13.  
  14. #define INC_OLE2
  15. #include <windows.h>
  16. #ifdef INIT_GUIDS
  17. #include <initguid.h>
  18. #endif
  19.  
  20. #else
  21.  
  22. #include <varargs.h>
  23.  
  24. #ifndef DWORD
  25. #define    DWORD    unsigned long
  26. #endif
  27.  
  28. #endif // !WIN32
  29.  
  30.  
  31. typedef unsigned __int64    QWORD;
  32.  
  33. #endif // ifndef _MACHINE_H_
  34. // EOF =======================================================================
  35.