XLKit
0.1.0
|
Macros for interfacing with Excel. More...
Macros | |
#define | XLKIT_INIT_ADDIN_LABEL(LABEL) |
Macro to register the name of the add-in. This shows up as the category in Excel's Function Wizard for all registered functions. More... | |
#define | XLKIT_PARM(VALUE_TYPE, NAME, HELP) |
Macro to create xlParm<NAME> typedef as xlParm<VALUE_TYPE, HELP> proxy type for a variable of VALUE_TYPE. More... | |
#define | XLKIT_REGISTER(FUNC, HELP) |
Macro to register the given function with xlkit. More... | |
#define | XLKIT_REGISTER_AS(XLNAME, FUNC, HELP) |
Macro to register the given function with xlkit with a different name from the C++ function name. More... | |
#define | XLKIT_API __stdcall |
All registered functions must have this calling convention. | |
#define | XLKIT_PRAGMA_DLL_EXPORT __pragma(comment(linker, "/EXPORT:" __FUNCTION__ "=" __FUNCDNAME__)) |
Macro to export the enclosed function for Excel to use. | |
#define | XLKIT_BEGIN_FUNCTION |
All Excel functions begin with this macro. More... | |
#define | XLKIT_END_FUNCTION(RESULT_T) |
All Excel functions end with this macro. More... | |
Macros for interfacing with Excel.
#define XLKIT_BEGIN_FUNCTION |
All Excel functions begin with this macro.
#define XLKIT_END_FUNCTION | ( | RESULT_T | ) |
All Excel functions end with this macro.
#define XLKIT_INIT_ADDIN_LABEL | ( | LABEL | ) |
Macro to register the name of the add-in. This shows up as the category in Excel's Function Wizard for all registered functions.
#define XLKIT_PARM | ( | VALUE_TYPE, | |
NAME, | |||
HELP | |||
) |
Macro to create xlParm<NAME>
typedef as xlParm<VALUE_TYPE, HELP>
proxy type for a variable of VALUE_TYPE.
#define XLKIT_REGISTER | ( | FUNC, | |
HELP | |||
) |
Macro to register the given function with xlkit.
#define XLKIT_REGISTER_AS | ( | XLNAME, | |
FUNC, | |||
HELP | |||
) |
Macro to register the given function with xlkit with a different name from the C++ function name.