StdAfx.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /******************************************************************************
  2. |* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. |* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. |* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. |* PARTICULAR PURPOSE.
  6. |*
  7. |* Copyright 1995-2005 Nero AG. All Rights Reserved.
  8. |*-----------------------------------------------------------------------------
  9. |* NeroSDK / NVAPIExample
  10. |*
  11. |* PROGRAM: StdAfx.h
  12. |*
  13. |* PURPOSE: stdafx.h : include file for standard system include files,
  14. |* or project specific include files that are used frequently, but
  15. |* are changed infrequently
  16. ******************************************************************************/
  17. #if !defined(AFX_STDAFX_H__CE924482_1714_4DFA_84FE_E204CC6D7EB2__INCLUDED_)
  18. #define AFX_STDAFX_H__CE924482_1714_4DFA_84FE_E204CC6D7EB2__INCLUDED_
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  23. #include <afxwin.h> // MFC core and standard components
  24. #include <afxext.h> // MFC extensions
  25. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  26. #ifndef _AFX_NO_AFXCMN_SUPPORT
  27. #include <afxcmn.h> // MFC support for Windows Common Controls
  28. #endif // _AFX_NO_AFXCMN_SUPPORT
  29. #include <atlconv.h>
  30. #import "msxml3.dll"
  31. #include <msxml2.h>
  32. using namespace MSXML2;
  33. #define EVAL_HR(_hr) { HRESULT hr = _hr; if FAILED(hr) throw hr; }
  34. #import "C:\Program Files\Ahead\NeroVision\NeroVisionAPI.dll"
  35. using namespace NeroVisionAPI;
  36. #include "NeroAPIGlue.h"
  37. // Disable "'identifier' : identifier was truncated to 'number' characters in the debug information"
  38. // type of warnings.
  39. //
  40. #pragma warning(disable:4786)
  41. // Special user defined messages used to forward nero user dialog and
  42. // idle callbacks to the interested recipients.
  43. //
  44. #define UM_NERO_USER_DIALOG (WM_APP + 111)
  45. #define UM_NERO_IDLE_CALLBACK (WM_APP + 112)
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_STDAFX_H__CE924482_1714_4DFA_84FE_E204CC6D7EB2__INCLUDED_)