Cthulhu  0.2.10
Cthulhu compiler collection

Driver helper. More...

Collaboration diagram for Driver helper:

Macros

#define CT_LANG_ENTRY   "lang_main"
 
#define CT_PLUGIN_ENTRY   "plugin_main"
 
#define CT_TARGET_ENTRY   "target_main"
 
#define CT_LANG_EXPORT(mod)
 declares the entry point for a language driver module More...
 
#define CT_PLUGIN_EXPORT(mod)
 declares the entry point for a plugin driver module More...
 
#define CT_TARGET_EXPORT(mod)
 declares the entry point for a target driver module More...
 

Typedefs

typedef const language_t *(* lang_main_t) (void)
 
typedef const plugin_t *(* plugin_main_t) (void)
 
typedef const target_t *(* target_main_t) (void)
 

Detailed Description

Driver helper.

Macro Definition Documentation

◆ CT_LANG_ENTRY

#define CT_LANG_ENTRY   "lang_main"

Definition at line 18 of file driver.h.

◆ CT_LANG_EXPORT

#define CT_LANG_EXPORT (   mod)

declares the entry point for a language driver module

conditionally declares the driver entry point for a module to handle building as both a shared and static library.

Parameters
modthe input module

◆ CT_PLUGIN_ENTRY

#define CT_PLUGIN_ENTRY   "plugin_main"

Definition at line 19 of file driver.h.

◆ CT_PLUGIN_EXPORT

#define CT_PLUGIN_EXPORT (   mod)

declares the entry point for a plugin driver module

conditionally declares the driver entry point for a module to handle building as both a shared and static library.

Parameters
modthe input module

◆ CT_TARGET_ENTRY

#define CT_TARGET_ENTRY   "target_main"

Definition at line 20 of file driver.h.

◆ CT_TARGET_EXPORT

#define CT_TARGET_EXPORT (   mod)

declares the entry point for a target driver module

conditionally declares the driver entry point for a module to handle building as both a shared and static library.

Parameters
modthe input module

Typedef Documentation

◆ lang_main_t

typedef const language_t*(* lang_main_t) (void)

Definition at line 14 of file driver.h.

◆ plugin_main_t

typedef const plugin_t*(* plugin_main_t) (void)

Definition at line 15 of file driver.h.

◆ target_main_t

typedef const target_t*(* target_main_t) (void)

Definition at line 16 of file driver.h.