mirror of https://github.com/axmolengine/axmol.git
Merge pull request #8961 from Appgeneration/winrt_link_fix
Winrt link fix
This commit is contained in:
commit
e99ea7a9fe
|
@ -29,9 +29,9 @@
|
||||||
|
|
||||||
NS_CC_BEGIN
|
NS_CC_BEGIN
|
||||||
|
|
||||||
const ValueVector ValueVectorNull;
|
CC_DLL const ValueVector ValueVectorNull;
|
||||||
const ValueMap ValueMapNull;
|
CC_DLL const ValueMap ValueMapNull;
|
||||||
const ValueMapIntKey ValueMapIntKeyNull;
|
CC_DLL const ValueMapIntKey ValueMapIntKeyNull;
|
||||||
|
|
||||||
const Value Value::Null;
|
const Value Value::Null;
|
||||||
|
|
||||||
|
|
|
@ -39,9 +39,9 @@ typedef std::vector<Value> ValueVector;
|
||||||
typedef std::unordered_map<std::string, Value> ValueMap;
|
typedef std::unordered_map<std::string, Value> ValueMap;
|
||||||
typedef std::unordered_map<int, Value> ValueMapIntKey;
|
typedef std::unordered_map<int, Value> ValueMapIntKey;
|
||||||
|
|
||||||
extern const ValueVector ValueVectorNull;
|
CC_DLL extern const ValueVector ValueVectorNull;
|
||||||
extern const ValueMap ValueMapNull;
|
CC_DLL extern const ValueMap ValueMapNull;
|
||||||
extern const ValueMapIntKey ValueMapIntKeyNull;
|
CC_DLL extern const ValueMapIntKey ValueMapIntKeyNull;
|
||||||
|
|
||||||
class CC_DLL Value
|
class CC_DLL Value
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue