messiah_system.h


Provides functionality needed by all plugins.

Version:
1.1
Date:
6/07/03
Comments
The functionality of this header includes specifying the entry and exit points of you plugin, registering the modules that it contains as well as version and program identification.
Most, if not all of the functions and macros contained in this header are intended to be used only in your _pluginEntry function.


Defines

#define _MESSIAH_IMPORT
 Used to define a symbol to be "imported" by the plugin.

#define _MESSIAH_EXPORT
 Used to define a symbol to be "exported" by the plugin.

#define fx_64bit
 64 bit integer.


Define Documentation

#define _MESSIAH_EXPORT
 

Used to define a symbol to be "exported" by the plugin.

In Windows this means that the symbol (variable or function) is visible from outside of the DLL. This symbol is defined as:
 __declspec( dllexport ) 

#define _MESSIAH_IMPORT
 

Used to define a symbol to be "imported" by the plugin.

In Windows this means that the symbol (variable or function) is visible from outside of the DLL you have loaded. This symbol is defined as:
 __declspec( dllimport ) 

#define fx_64bit
 

64 bit integer.

in Windows this is defined as:
 __int64 


© 2003 pmG WorldWide, LLC.


www.projectmessiah.com

groups.yahoo.com/pmGmessiah

Last Updated on Thu Jul 10 04:49:37 2003