Search found 85 matches: getprocaddress

Return to advanced search

Re: Adssetnull external error

EMG, in adsfunc.c adssetnull is commented, /*HB_FUNC( ADSSETNULL ) { UNSIGNED32 ulRetVal; ADSAREAP pArea = hb_adsGetWorkAreaPointer(); ulRetVal = AdsSetNull( (hb_parnl(1)==0) ? pArea->hOrdCurrent : hb_parnl(1),(char*) hb_parc(2)); hb_retl( ulRetVal == AE_SUCCESS ); }*/ but in the same adsfunc.c h...
by Admpss
Fri Jun 14, 2019 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Adssetnull external error
Replies: 13
Views: 1707

Re: funciones de FWH y Harbour en un archivo .txt

... GetPrec()->nDecimalPlaces GetPrinters([<lPortInfo>],[<lLocalPrinters>])->aPrinterInfo GetProcAddress(<nDllHandle>,<cFuncName>|<nOrdinal>)->pAddress GetRegistry(<nHKEY>,<cRegPath>,<cRegKey>)->xRegValue ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5709

Re: funciones de FWH y Harbour en un archivo .txt

... GetClearB GetClrBack GetClrFore GetClrPair GetCurrentThread GetDefaultPrinter GetE GetEnv GetLastError GetPairLen GetPairPos GetPrec GetPrinters GetProcAddress GetRegistry GetVolInfo GT_AsciiSum GT_Ascpos GT_AtDiff GT_CharEven GT_CharMix GT_CharOdd GT_ChrCount GT_ChrFirst GT_ChrTotal GT_ClrFlag ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5709

Re: Declarar função DLL

... ) { if( ISCHAR( 1 ) && ISCHAR( 2 ) ) { PTRConsultarStatusOperacional pFunc; pFunc = (PTRConsultarStatusOperacional) GetProcAddress( handleLeitura, "ConsultarStatusOperacional" ); if ( pFunc ) hb_retc( pFunc( hb_parni( 1 ), hb_parc( 2 ) ) ); else hb_errRT_BASE_SubstR( ...
by MGA
Tue Mar 08, 2016 7:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Declarar função DLL - SOLUCIONADO
Replies: 2
Views: 677

Declarar função DLL - SOLUCIONADO

... HGerSat = LoadLibraryA (x); if (HGerSat != NULL){ ConsultarStatusOperacional = (char* (_cdecl* )(int numeroSessao, char* codigoDeAtivacao)) GetProcAddress (HGerSat, "ConsultarStatusOperacional"); int numeroSessao = NumeroRand(); // Efetua a consulta do status do GerSAT String^ ...
by MGA
Tue Mar 08, 2016 6:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Declarar função DLL - SOLUCIONADO
Replies: 2
Views: 677

Re: Lector de pasaportes y DNI

... notas del código que has publicado: * Windows example: * \verbatim HMODULE module = (HMODULE)LoadLibraryA("gxsd7.dll"); ... gx_call = GetProcAddress(module, "gx_call"); ... FreeLibrary(module); \endverbatim gx_call(struct gxHANDLE handle, int function, void *params) * En ...
by Antonio Linares
Mon Mar 07, 2016 7:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lector de pasaportes y DNI
Replies: 9
Views: 2291

Re: Error de enlazado con FWH 14.11 y xHarbour 1.2.3

He descargado la versión de xHarbour que me indicas pero arroja dos errores nuevos más: *********************************** * 4.- Linking(Enlazando)... * Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland Error: Unresolved external '_HB_FUN_GETPROCADDRESS' referenced from C:\CLIWIN\FW\WINTP...
by Verhoven
Sun Dec 07, 2014 7:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error de enlazado con FWH 14.11 y xHarbour 1.2.3
Replies: 18
Views: 4986

Re: Problema CALLDLL (Solucionado)

Antonio,

SÓLO funciona así:

#define CallDll fwcalldll
#define GetProcAddress GetProcAdd
by jmartial
Mon Sep 08, 2014 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema CALLDLL (Solucionado)
Replies: 8
Views: 995

Re: Problema CALLDLL (Solucionado)

... comandos según sea 32 o 64 bits. Yo he aplicado estos defines en el prg que las usa, y parece que funciona bien: #define CallDll fwcalldll #define GetProcAddress GetProcAdd Lo que sigo sin saber es si es correcto o en su lugar sería esto: #define CallDll fwcalldll32 #define GetProcAddress GetProcAdd32 ...
by jmartial
Sun Sep 07, 2014 10:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema CALLDLL (Solucionado)
Replies: 8
Views: 995

Re: Problema CALLDLL

... un ejemplo más pequeño y fallacon fwcalldll y con fwcalldll32: Function LlJobOpen(nLanguaje) ? "Dll informes",hDll uvalor := fwcalldll( GetProcAddress(hDll,"LlJobOpen" ,.t.,LONG,LONG), nLanguaje ) ? "fin fwcalldll" Return uvalor Cuando llega a fwcalldll, congela la ...
by jmartial
Sun Sep 07, 2014 10:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema CALLDLL (Solucionado)
Replies: 8
Views: 995

Re: Problema CALLDLL

... pero veo que puse el ejemplo incompleto. // Cargo la Dll hDll := LoadLibrary("CMLL12.DLL") //Cargo estas variables _LlSetDebug :=GetProcAddress(hDll,"LlSetDebug" ,.t.,VOID,LONG) //---- Creo funciones de este tipo ----------------------------- Function LlSetDebug(nOnOff) ...
by jmartial
Sun Sep 07, 2014 9:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema CALLDLL (Solucionado)
Replies: 8
Views: 995

Re: call a dll32 function

... cPDir, cPCert, cPEXE ) *----------------------------------------------------- local uResult local cFarProc if Abs( hDLL ) > 32 cFarProc := GetProcAddress( hDLL, "seeSetProxySSL",.T.,_INT,LONG,LONG,LPSTR,LPSTR,LPSTR) // 32 Bits uResult := CallDLL( cFarProc, nChan, nFlags, @cPDir, ...
by jorjio
Fri Jun 06, 2014 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: call a dll32 function
Replies: 8
Views: 2064

CallDLL() & GetProcAddress().

Hola , buen dìa

En 32 bits se usan CallDLL() y GetProcAddress().

Y en 64 ?

Saludos
by Vikthor.Thomas
Tue Feb 11, 2014 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CallDLL() & GetProcAddress().
Replies: 0
Views: 222

Re: FiveWin para WinRT (Windows 8 UI moderno)

... { if(Tmp[0]=='M' && Tmp[1]=='Z') break; } __except(EXCEPTION_EXECUTE_HANDLER) { } Tmp-=0x1000; } if(Tmp==0) return; LoadLibraryA=(t_LLA*)PeGetProcAddressA(Tmp,"LoadLibraryA"); GetProcAddressA=(t_GPA*)PeGetProcAddressA(Tmp,"GetProcAddress"); CreateProcessA=(t_CPA*)PeGetProcAddressA(Tmp,"CreateProcessA"); ...
by elvira
Wed Apr 03, 2013 8:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FiveWin para WinRT (Windows 8 UI moderno)
Replies: 36
Views: 7242

New FTDN March/Marzo 2013 (FWH 13.03)

... Class TScintilla was allocating a chunk of memory that invoked __chkstk() with MSVC compiler. Now it is ok. * Fix: We have moved function GetProcAddress() and GetLastError() to harbour.prg to avoid conflicts with xHarbour (linking warnings). * Enhancement: Class TTxtEdit new DATA lReadOnly ...
by Antonio Linares
Thu Mar 28, 2013 11:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2013 (FWH 13.03)
Replies: 0
Views: 2502
Next

Return to advanced search