/**********************************************************************/
/*                                                                    */
/* File name: PIC18F452.cpp                                           */
/*                                                                    */
/* Since:     2002/12/03                                              */
/*                                                                    */
/* Version:   1.02                                                    */
/*                                                                    */
/* Author:    MONTAGNE Xavier [XM] {link xavier.montagne@wanadoo.fr}  */
/*                                                                    */
/* Purpose: Entry of the DLL.                                         */
/*                                                                    */
/* Distribution: This file is part of PP18.                           */
/*               PP18 is free software; you can redistribute it       */
/*               and/or modify it under the terms of the GNU General  */
/*               Public License as published by the Free Software     */
/*               Foundation; either version 2, or (at your option)    */
/*               any later version.                                   */
/*                                                                    */
/*               PP18 is distributed in the hope that it will be      */
/*               useful, but WITHOUT ANY WARRANTY; without even the   */
/*               implied warranty of MERCHANTABILITY or FITNESS FOR A */
/*               PARTICULAR PURPOSE.  See the GNU General Public      */
/*               License for more details.                            */
/*                                                                    */
/*               You should have received a copy of the GNU General   */
/*               Public License along with PP18; see the file         */
/*               COPYING.txt. If not, write to the Free Software      */
/*               Foundation, 59 Temple Place - Suite 330,             */
/*               Boston, MA 02111-1307, USA.                          */
/*                                                                    */
/* History:                                                           */
/*      2002/12/03  [XM] Create this file                             */
/*                                                                    */
/**********************************************************************/

/***********************************************************************
 * INCLUDES
 **********************************************************************/
#include <vcl.h>
#include <windows.h>

#include "DLL_interface.h"
#pragma hdrstop

USEUNIT("Com.c");
USEFILE("Com.h");
USEUNIT("DLL_interface.c");
USEFILE("DLL_interface.h");
USEUNIT("driver.c");
USEFILE("driver.h");
USEFORM("Settings.cpp", SettingsWindow);
USEFORM("Advanced.cpp", AdvancedWindow);
USEFORM("Configuration.cpp", ConfigWindow);
USEFORM("DDLAbout.cpp", AboutWindow);
USERES("PIC18F452.res");
USEFORM("Progress.cpp", ProgressWindow);
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
{
    return 1;
}

/* End of file */







