NANA
首页
模块
类
文件
文件列表
文件成员
NANA
modules
core
include
core
core_global.h
浏览该文件的文档.
1
#pragma once
15
#include "
nadef.hpp
"
16
17
#ifdef _WIN64
18
#ifdef NA_EXPORT
19
#define NA_API __declspec(dllexport)
20
#else
21
#define NA_API __declspec(dllimport)
22
#endif
23
#else
24
#define NA_API
25
#endif
26
27
#define NA_FINAL final
28
29
namespace
NANA {
30
34
enum
Error
35
{
36
RET_OK
,
37
ERR_PARAM
,
38
ERR_RUNTIME
,
39
ERR_ASSERT
,
40
};
41
42
43
44
}
45
46
NANA::Error
Error
返回必要的错误类型
Definition:
core_global.h:35
NANA::ERR_ASSERT
@ ERR_ASSERT
断言时出错
Definition:
core_global.h:39
NANA::ERR_PARAM
@ ERR_PARAM
参数出错
Definition:
core_global.h:37
NANA::ERR_RUNTIME
@ ERR_RUNTIME
运行时出错
Definition:
core_global.h:38
NANA::RET_OK
@ RET_OK
0表示返回值正常
Definition:
core_global.h:36
nadef.hpp
数值分析所依赖的定义
制作者
1.9.2