Can you see any mistakes that I've made?
Thanks
Code: Select all
-- Header File
extern "C"
{
__declspec(dllexport) int __stdcall AboutPlugIn();
}
-- Implementation File
#include "windows.h"
#include "DatabaseWizardWrapper.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved )
{
return TRUE;
}
extern "C"
{
__declspec(dllexport) int __stdcall AboutPlugIn()
{
MessageBox(NULL, "i-mate Database Wizard Plug-In for InstallAware", "About Plug-In", 0);
return 99;
}
}
-- Exports Definition File
EXPORTS
AboutPlugIn