Go to the source code of this file.
      
        
          | #define KVIMODULEEXPORT   extern "C" __attribute__((visibility("default"))) | 
      
 
 
      
        
          | #define KVIMODULEEXPORTDATA   __attribute__((visibility("default"))) | 
      
 
 
      
        
          | #define KVIRC_MODULE | ( |  | _szModuleName, | 
        
          |  |  |  | _szVersion, | 
        
          |  |  |  | _szCopyright, | 
        
          |  |  |  | _szDescription, | 
        
          |  |  |  | _init_routine, | 
        
          |  |  |  | _can_unload, | 
        
          |  |  |  | _ctrl_routine, | 
        
          |  |  |  | _cleanup_routine, | 
        
          |  |  |  | _szModuleContext | 
        
          |  | ) |  |  | 
      
 
Value:
                _szModuleName,                                                                                                                                       \
                _szModuleContext,                                                                                                                                    \
                _szVersion,                                                                                                                                          \
                _szCopyright,                                                                                                                                        \
                _szDescription,                                                                                                                                      \
                _init_routine,                                                                                                                                       \
                _can_unload,                                                                                                                                         \
                _ctrl_routine,                                                                                                                                       \
                _cleanup_routine                                                                                                                                     \
        };
#define KVIMODULEEXPORTDATA
Definition: KviModule.h:52
#define KVI_VERSION
Definition: kvi_settings.h:153
Definition: KviModule.h:63
 
 
 
      
        
          | #define KVIRC_MODULE_STRUCTURE_SYMBOL   "KVIrc_module_info" | 
      
 
 
      
        
          | typedef bool(* KviModuleCtrlRoutine)(KviModule *, const char *, void *) | 
      
 
 
      
        
          | typedef bool(* KviModuleSystemRoutine)(KviModule *) |