A MySQL Storage engine requires functions that MySQL provides. Therefore, you normally need to link it into mysqld-core under Windows because mysqld.exe doesn't export all required functions (because it's an .exe, not a .dll). So, you're unable to import the required functions in our Plugin. Learn a possible way to circumvent this limitation by using the .map files that are provided with MySQL.
Latest Plug-ins / Add-ins Articles
DynObj: C++ Cross-Platform Plugin Objects
Learn about a framework for loading and using binary C++ plugin libraries. It is cross-compiler and cross-platform.
Introduction to PDL
PDL (Portable Dynamic Loader) is a light, simple, and portable library designed especially for creating and using dynamically loaded class objects.
Handling Multiple Processors in Your Code Using RapidMind
Multicore processors bring new challenges. See a solution for gaining the ability to scale to the increasing number and types of processor cores.
Multi Platform Plugin Development Made Easy!
Learn how to develop and use multi platform plugins easily using the Simple Plugin Layer (SPL) Library.
Macros for C++, in C++
Learn how to write macros for C++ in Visual Studio.
Latest CodeGuru Developer Columns
Understanding the C++ Utility Components in the C++ Standard Library
Learn more about a few commonly used components and explore their utility and usages.

Top Programming Languages to Use for .NET Development
Take a look at some of the most popular languages to use within the .NET paradigm.

Using Common Visual Basic Maths Conversion Functions—Imperial to Metric
When you need to convert imperial to metric and vice versa, here are some formulas to keep on hand.
The Value of APIs
Application Programming Interfaces (APIs) are where you have to be. It's not a matter of if as much as a matter of which.