Search found 76 matches: impdef

Return to advanced search

Re: moving to MSVC 32 bits

Rimatas, I set up the enviroment variables in vcvars in the system enviroment at Control Panel. To create the lib: impdef.exe mydll.def mydll.dll lib.exe /def:mydll.def /out:mydll.def The problem at your FWH build was that no one were using msvc 2010. Due to Timm Stone´s interest, ...
by lucasdebeltran
Tue Feb 26, 2013 10:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8199

Re: DllPreparecall

... linking 2. Dynamic linking In order to use static linking you have to create an import library from the DLL. You can use libdef.exe or libimp.exe: impdef.exe mydll.def mydll.dll or implib.exe mydll.lib mydll.dll implib.exe will create the lib. impdef.exe will create a def file (ascii file) and ...
by Antonio Linares
Mon Nov 19, 2012 11:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DllPreparecall
Replies: 14
Views: 2916

Re: Sr. Antonio - ScanCAPI.h

CL Low,

This is the right way to build the library:

impdef.exe scnapi32.def scnapi32.dll

lib.exe /def:scnapi32.def /machine:arm /out:scnapi32.lib

If you send me scnapi32.dll then we will build the lib for you :-)
by Antonio Linares
Tue May 29, 2012 10:58 am
 
Forum: FiveWin para Pocket PC
Topic: Sr. Antonio - ScanCAPI.h
Replies: 10
Views: 9881

Re: Ping con hb_ping() de Daniel con MINGW SOLUCIONADO

... hb_Ping( hb_parc( 1 ) ) );}#pragma ENDDUMP  Luego creamos la libreria exportando de ICMP.DLL usando impdef.exe de BCC c:\bcc63\bin\impdef icmp.def icmp.dll Crea el archivo icmp.def LIBRARY     ICMP.DLLEXPORTS    IcmpCloseHandle ...
by nnicanor
Sun May 06, 2012 6:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ping con hb_ping() de Daniel con MINGW
Replies: 1
Views: 628

Re: Compilando TSCAN MVC2010

Generado asi genera error de sintaxis al crear la lib impdef -h twain4.def eztw32.dll LIBRARY     EZTW32.DLLEXPORTS    CONTAINER_Array                @317  @0   ; CONTAINER_Array  ...
by nnicanor
Sun Apr 08, 2012 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando TSCAN MVC2010
Replies: 17
Views: 4028

Re: Compilando TSCAN MVC2010

Generado asi: impdef -aa twain3.def eztw32.dll LIBRARY     EZTW32.DLLEXPORTS    _CONTAINER_Array              = CONTAINER_Array               ...
by nnicanor
Sun Apr 08, 2012 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando TSCAN MVC2010
Replies: 17
Views: 4028

Re: Compilando TSCAN MVC2010

Generado con impdef -a twain2.def eztwain.dll LIBRARY     EZTW32.DLLEXPORTS    _CONTAINER_Array              = CONTAINER_Array               ...
by nnicanor
Sun Apr 08, 2012 3:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando TSCAN MVC2010
Replies: 17
Views: 4028

Re: Compilando TSCAN MVC2010

Antonio, twain1.def generado asi: impdef twain1.def eztw32.dll LIBRARY     EZTW32.DLLEXPORTS    CONTAINER_Array                @317 ; CONTAINER_Array    CONTAINER_ContainsValue ...
by nnicanor
Sun Apr 08, 2012 3:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando TSCAN MVC2010
Replies: 17
Views: 4028

Compilando TSCAN MVC2010

Trantando de compilar TSCAN con Harbour 3.1 y MVC 2010 tengo estos problemas al enlazar he creado la lib de la siguiente manera desde EZTW32.DLL impdef twain.def EZTW32.DLL lib.exe /DEF:twain.def /OUT:twain.lib /MACHINE:X86 Para crear la lib he probado con parametros de impdef -a , -aa, -h. Si ...
by nnicanor
Sat Apr 07, 2012 6:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilando TSCAN MVC2010
Replies: 17
Views: 4028

Re: Primera app real de Windows 8 Metro desde FWH !!!

... usen el API WinRT de Windows 8, necesitamos enlazar combase.lib. Windows 8 proporciona combase.dll, y podemos extraer combase.def de esta forma: impdef.exe combase.def combase.dll Para construir la lib: (si usamos Borland) implib.exe combase.lib combase.dll Si usamos Microsoft C/C++: lib.exe ...
by Antonio Linares
Thu Mar 29, 2012 5:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Primera app real de Windows 8 Metro desde FWH !!!
Replies: 19
Views: 4374

Re: First true Windows 8 Metro app from FWH !!!

In order to build Windows 8 WinRT apps, we need to link combase.lib. Windows 8 provides a combase.dll, so we can extract combase.def this way: impdef.exe combase.def combase.dll Then to build a lib: (if using Borland) implib.exe combase.lib combase.dll If using Microsoft C/C++: lib.exe /DEF:combase.def ...
by Antonio Linares
Thu Mar 29, 2012 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: First true Windows 8 Metro app from FWH !!!
Replies: 13
Views: 5955

HOWTO. BorlandC y OpenSSL

... que la genera a partir de la DLL, nos dará error a la hora de linkar. La solución a este problema, gracias a Daniel Garcia, es hacer lo siguiente; impdef libeay32.def libeay32.dll El def que obtenemos, es similar a este; LIBRARY     LIBEAY32.DLLEXPORTS    ACCESS_DESCRIPTION_free        @1994; ACCESS_DESCRIPTION_free  ...
by thefull
Thu Feb 23, 2012 8:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: HOWTO. BorlandC y OpenSSL
Replies: 13
Views: 4272

Re: UE Studio Config - Harbour 3.0, MSVC, FWH

... 1. You have to create go_vc.bat yourself with the contents that I have copied in my post. 2. Generate a DEF file from the DLL doing: c:\bcc582\bin\impdef.exe ace32.def ace32.dll the create the lib file from the DEF file: (Microsoft lib.exe) lib.exe /def:ace32.def /out:ace32.lib /MACHINE:IX86
by Antonio Linares
Tue Dec 27, 2011 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UE Studio Config - Harbour 3.0, MSVC, FWH
Replies: 52
Views: 18715

Re: Invocar un dll desde fivewin

bueno aca lo ideal es hacer un impdef correo.def correo.dll y ver en el def creado el nombre de la funcion con su dentificado. DLL32 FUNCTION FUN_RECIVMSG2( cPathMBox AS LPSTR, cPathRec AS LPSTR, n_CRITER AS INTEGER, c_KEY AS LPSTR) ...
by carlos vargas
Wed Nov 16, 2011 10:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Invocar un dll desde fivewin
Replies: 2
Views: 561

Re: Creation of xHarbour PCODE DLL succeeded

...        ExecuteAll()   ...DLL FUNCTION ExecuteAll() AS BOOL PASCAL LIB hDLL To check that everything is fine, we do: c:\bcc582\bin\impdef.exe babudll.def babudll.dll and we get an ascii babudll.def with: LIBRARY     BABUDLL.DLLEXPORTS    ExecuteAll                     @3   ; ExecuteAll  ...
by Antonio Linares
Wed Nov 16, 2011 10:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation of xHarbour PCODE DLL succeeded
Replies: 25
Views: 10208
PreviousNext

Return to advanced search