00001 /**********************************************************/ 00002 /*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/ 00003 /* 00004 Copyright: 1995 - Grupo de Voz (DAET) ETSII/IT-Bilbao 00005 00006 Nombre fuente................ DLL.C 00007 Nombre paquete............... SPL 00008 Lenguaje fuente.............. C (Borland C/C++ 3.1) 00009 Estado....................... Completado 00010 Dependencia Hard/OS.......... entrada para DLL de MS-Windows 00011 Codigo condicional........... - 00012 00013 Codificacion................. Borja Etxebarria 00014 00015 Version dd/mm/aa Autor Proposito de la edicion 00016 ------- -------- -------- ----------------------- 00017 1.0.0 04/03/97 Borja Codificacion inicial. 00018 00019 ======================== Contenido ======================== 00020 Funcion principal (LibMain) para hacer una DLL de MS-Windows 00021 con las funciones SPL. 00022 =========================================================== 00023 */ 00024 /*/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/ 00025 /**********************************************************/ 00026 00027 /**********************************************************/ 00028 00029 #include <windows.h> 00030 00031 /**********************************************************/ 00032 00033 int far pascal LibMain( HANDLE hInstance, WORD wDataSeg, WORD wHeapSize, 00034 LPSTR lpszCmdLine) 00035 { 00036 return 1; 00037 } 00038 00039 /**********************************************************/