Main XLKit header.
More...
#include <xlkit/xldebug.hpp>
#include <xlkit/xlException.hpp>
#include <xlkit/xlOperand.hpp>
#include <xlkit/xlversion.hpp>
#include <boost/function_types/components.hpp>
#include <boost/function_types/is_nonmember_callable_builtin.hpp>
#include <boost/mpl/begin_end.hpp>
#include <boost/mpl/deref.hpp>
#include <boost/unordered_map.hpp>
#include <boost/utility/enable_if.hpp>
#include <string>
#include <vector>
#include <stdio.h>
Go to the source code of this file.
|
#define | BOOST_FT_AUTODETECT_CALLING_CONVENTIONS |
|
#define | XLKIT_TYPEINFO(TYPE, CODE, HELP) |
|
#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...
|
|
|
template<typename T , typename PARM_HELP = xlkit::detail::empty_> |
using | xlParm = xlkit::Parm< T, PARM_HELP > |
| An xlkit function parameter of type T, with optional help for convenience. See Parm.
|
|
typedef xlkit::ResultOperandPtr | xlResultOperandPtr |
| Return value for XLL functions. See xlResultOperandPtr.
|
|
|
void | xlkit::XLKIT_VERSION_NAME::dumpRegistry () |
|
#define XLKIT_TYPEINFO |
( |
|
TYPE, |
|
|
|
CODE, |
|
|
|
HELP |
|
) |
| |
Value:template <> \
struct TypeInfo<TYPE> { \
static size_t size() { return sizeof(TYPE); } \
static char code() { return CODE; } \
static const char* name() { return #TYPE; } \
static const char* help() { return HELP; } \
}; \