Search found 76 matches: impdef

Return to advanced search

Re: Using WebView with Borland !!!

César,

la segunda llamada es:

implib.exe webview.lib webview.def

estas llamando a impdef.exe nuevamente :-)
by Antonio Linares
Wed Feb 16, 2022 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7987

Re: Using WebView with Borland !!!

Antonio No he sido capaz de crear la lib para Borland Cuando corro: impdef.exe webview.def webview.dll Me genera esto: LIBRARY     WEBVIEW.DLLEXPORTS    webview_bind                   @1   ...
by cmsoft
Wed Feb 16, 2022 11:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7987

Re: Using WebView with Borland !!!

Silvio.Falconi wrote: I must link any lib ?

Yes. You have to create Webvew.lib using the impdef and implib process as explained on the first page of this thread.

Regards
Anser
by anserkk
Tue Feb 15, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7987

Re: Using WebView with Borland !!!

... can see it. Still wondering why. But Borland works fine if we do a static linking this way: 1. We create the .DEF file of webview.dll this way: impdef.exe webview.def webview.dll 2. We need to modify webview.def this way (please notice the underscores in front of the names): LIBRARY WEBVIEW.DLL ...
by Antonio Linares
Wed Dec 01, 2021 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 7987

Re: clase VLC para crear un player - algunos problemas

... ya tengo la dll, el encabezado (archivos .h del api), las lib para bc compiler. una la extraje directamente con implib, la otra la extraje usando impdef, y la tercera, la igual con impdef pero agregando un gion a los nombres de las funciones. mas de alguna de las lib funciona, pero el caso es ...
by carlos vargas
Fri Oct 12, 2018 5:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: clase VLC para crear un player - algunos problemas
Replies: 15
Views: 3739

Re: hbssl.lib (SOLUCIONADO)

Gabriel,

Muchas gracias

Copio aquí tus instrucciones para que le sirva a otros:
Lo he hecho así :

1.- Impdef.exe ssleay32.def ssleay32.dll

2.- Edito ssleay32.def con block de notas y reemplazo funciones poniendo guión bajo delante del nombre.

3.- implib.exe ssleay32.lib ssleay32.def
by Antonio Linares
Thu Jun 14, 2018 9:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: hbssl.lib (SOLUCIONADO)
Replies: 9
Views: 1524

Re: hbssl.lib

La librería ssleay32.lib se construye a partir de ssleay32.dll

Genera el fichero .DEF asi:

impdef.exe ssleay32.def ssleay32.dll

Modifica ssleay32.def añadiendo los subrayados iniciales, por ejemplo:
_SSL_library_init en vez de SSL_library_init

Construye la librería .LIB a partir del fichero .DEF
by Antonio Linares
Wed Jun 13, 2018 7:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: hbssl.lib (SOLUCIONADO)
Replies: 9
Views: 1524

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 nanoespinoza
Tue Jun 05, 2018 3:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Primera app real de Windows 8 Metro desde FWH !!!
Replies: 19
Views: 4433

Re: FWH64

implibf - impdef if only for 32bits app. use Mkexp.exe ... Generating an import library from a DLL: mkexp mydll.a mydll.dll Generating an import library from a .DEF file: mkexp mydll.a mydll.def http://docwiki.embarcadero.com/RADStudio/Seattle/en/MKEXP.EXE,_the_64-bit_Windows_Import_Library_Tool_for_C%2B%2B ...
by mastintin
Thu Mar 31, 2016 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25480

Re: FWH64

Tim,

We need to retrieve the ace64.def file from the ace64.dll file

usually we use Borland impdef.exe for that, but bcc582, bcc7, bcc7164 impdefs are failing with ace64.dll

impdef.exe ace64.def ace64.dll

We need to get that ace64.def file in order to create a ace64.lib (import library)
by Antonio Linares
Thu Mar 31, 2016 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH64
Replies: 110
Views: 25480

Re: Migration from Bcc to msvc

... all, we need to create the DEF file. Using Microsoft lib.exe you could do: lib.exe /DEF:ace32.def ace32.dll If the above fails, then use Borland impdef.exe as the DEFs are compatible and they are just ascii files: impdef.exe ace32.def ace32.dll Once you have the DEF file then use Microsoft lib.exe ...
by Antonio Linares
Sat Mar 07, 2015 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migration from Bcc to msvc
Replies: 17
Views: 7159

Re: libeay32.dll / ssleay32.dll origin ?

... found a way yet (I just checked again Microsoft lib.exe docs right now) to create the DEF file with Microsoft lib.exe. But we can use Borland's impdef.exe to create it and then supply it to Microsoft lib.exe On a next msg I post the contents of libeay32.def. I have searched for libeay32.dll ...
by Antonio Linares
Mon Aug 04, 2014 5:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: libeay32.dll / ssleay32.dll origin ?
Replies: 9
Views: 3557

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 cnavarro
Sun Apr 20, 2014 8:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: First true Windows 8 Metro app from FWH !!!
Replies: 13
Views: 5986

Re: DLLs with Harbour vs xHarbour

Tim,

Please create the DEF file from your DLL and post it here, thanks

impdef.exe yourdll.def yourdll.dll

The DEF file is an ascii file
by Antonio Linares
Sat Sep 14, 2013 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLs with Harbour vs xHarbour
Replies: 7
Views: 1586

Re: moving to MSVC 32 bits

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, Antonio ...
by Rimantas
Wed Feb 27, 2013 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8287
Next

Return to advanced search