FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
daScript/include/daScript/daScriptModule.h at master · aviktorov/daScript · GitHub
aviktorov
/
daScript
Public
forked from
GaijinEntertainment/daScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
daScript
/
include
/
daScript
/
daScriptModule.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (20 loc) · 612 Bytes
Breadcrumbs
daScript
/
include
/
daScript
/
daScriptModule.h
Copy path
File metadata and controls
24 lines (20 loc) · 612 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
pragma
once
#
include
<
stdint.h
>
namespace
das
{
extern
DAS_THREAD_LOCAL
unsigned
ModuleKarma;
class
Module
;
};
#
define
NEED_MODULE
(
ClassName
) \
extern
das::Module * register_##ClassName (); \
das::ModuleKarma +=
unsigned
(
intptr_t
(register_##ClassName()));
#
define
NEED_ALL_DEFAULT_MODULES
\
NEED_MODULE
(Module_BuiltIn); \
NEED_MODULE
(Module_Math); \
NEED_MODULE
(Module_Strings); \
NEED_MODULE
(Module_Rtti); \
NEED_MODULE
(Module_Ast); \
NEED_MODULE
(Module_Debugger); \
NEED_MODULE
(Module_FIO); \
NEED_MODULE
(Module_DASBIND); \
NEED_MODULE
(Module_Network);
Back
|
FazBrowse Home
|
New Git URL