2018-10-03 22:02:46 +08:00
|
|
|
|
// Copyright (c) 2016-2018 Easy2D - Nomango
|
|
|
|
|
|
//
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
|
//
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
|
//
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
//
|
|
|
|
|
|
// Website: https://www.easy2d.cn
|
|
|
|
|
|
// Source Code: https://github.com/Nomango/Easy2D
|
|
|
|
|
|
//
|
2017-09-10 23:56:52 +08:00
|
|
|
|
|
2017-12-11 18:17:24 +08:00
|
|
|
|
|
2017-09-10 23:56:52 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
2018-05-25 00:33:46 +08:00
|
|
|
|
# error <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> C++ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><CAB9> Easy2D
|
2017-09-10 23:56:52 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
|
2018-10-18 13:38:31 +08:00
|
|
|
|
#ifndef _MSC_VER
|
|
|
|
|
|
# error <20><>֧<EFBFBD><D6A7><EFBFBD><EFBFBD> MSVC <20><><EFBFBD><EFBFBD><EFBFBD>±<EFBFBD><C2B1><EFBFBD>
|
|
|
|
|
|
#elif _MSC_VER < 1700
|
2018-05-25 00:33:46 +08:00
|
|
|
|
# error Easy2D <20><>֧<EFBFBD><D6A7> Visual Studio 2012 <20><><EFBFBD>°汾
|
2017-09-12 12:53:34 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
|
2017-09-10 23:56:52 +08:00
|
|
|
|
|
2018-04-21 21:24:46 +08:00
|
|
|
|
#include "e2dmacros.h"
|
2018-09-05 13:33:39 +08:00
|
|
|
|
#include "e2dutil.h"
|
2018-09-06 23:26:32 +08:00
|
|
|
|
#include "e2dobject.h"
|
2018-09-05 13:17:07 +08:00
|
|
|
|
#include "e2dcomponent.h"
|
2018-09-05 13:33:39 +08:00
|
|
|
|
#include "e2dtool.h"
|
2018-04-21 21:24:46 +08:00
|
|
|
|
#include "e2daction.h"
|
|
|
|
|
|
#include "e2dtransition.h"
|
2018-09-05 13:17:07 +08:00
|
|
|
|
#include "e2dmodule.h"
|
2017-09-29 17:30:37 +08:00
|
|
|
|
|
2017-10-12 02:44:44 +08:00
|
|
|
|
|
2017-10-13 11:42:36 +08:00
|
|
|
|
#if defined(DEBUG) || defined(_DEBUG)
|
2018-05-25 00:33:46 +08:00
|
|
|
|
# pragma comment(lib, "Easy2Ddw.lib")
|
2017-10-13 11:42:36 +08:00
|
|
|
|
#else
|
2018-05-25 00:33:46 +08:00
|
|
|
|
# pragma comment(lib, "Easy2Dw.lib")
|
2017-10-05 00:53:03 +08:00
|
|
|
|
#endif
|