暫無描述
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.

Stdafx.h 636B

123456789101112131415161718192021222324
  1. // Copyright © 2014 The CefSharp Authors. All rights reserved.
  2. //
  3. // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
  4. #pragma once
  5. #ifdef EXPORT
  6. #define DECL __declspec(dllexport)
  7. #else
  8. #define DECL __declspec(dllimport)
  9. #endif
  10. #include <vector>
  11. #include <include/cef_base.h>
  12. #include ".\..\CefSharp.Core.Runtime\Internals\CefRefCountManaged.h"
  13. #include ".\..\CefSharp.Core.Runtime\Internals\MCefRefPtr.h"
  14. #include ".\..\CefSharp.Core.Runtime\Internals\StringUtils.h"
  15. #include "vcclr_local.h"
  16. using namespace System;
  17. using namespace CefSharp;
  18. using namespace CefSharp::Internals;