/** @file WS_DLL_13.cpp * * @brief Defines the entry point for the DLL application. * * * @see vetFilterSample * * @version 1.0 * @date 19/01/2006 17.27.37 * @author Alessandro Polo * * **************************************************************************** * VETLib Framework 1.0.2 * Copyright (C) Alessandro Polo 2005 * http://www.ewgate.net/vetlib * ****************************************************************************/ ////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////// DO NOT EDIT FOLLOWING //////////////////////////////////////////////////////// DO NOT EDIT FOLLOWING ////////////////////////////////////////////////////////////////////////////// #include "WS_DLL_13.h" #include "../ws_plugin_def.h" #include "../ws_plugin_func.h" VETPLUGIN_CLASSNAME* vetClassHistance; ////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// SETUP MODULE HERE //////////////////////////////////////////////////////////// SETUP MODULE HERE ////////////////////////////////////////////////////////////////////////////// WS_DLL_13_API int __callback_function(__vetPlugInFuncParam_ID f_ID, __vetPlugInParams* f_param, __vetPlugInParams** f_param_xtra = NULL ) { /* switch ( f_ID ) { case 0: break; case 1: break; case 2: break; case 3: break; default: return 1; } */ return 0; } WS_DLL_13_API int __callback_function_list_count() { return 0; } WS_DLL_13_API int __callback_function_list_info(__vetPlugInFuncInfo** infoPArray) { /* infoPArray[0]->init( 0, //id "", //name "", //param1 "", //result "" //c_decl ); */ return 0; } WS_DLL_13_API HRESULT openSetupDialog(HWND hParentWnd = NULL) { //add your setup dialog here MessageBox( hParentWnd, "Sorry, Setup dialog has not been implemented jet.", "vetFilterSample PlugIn", MB_OK | MB_ICONWARNING); return 1; }