Search found 19 matches: freelib32

Return to advanced search

Re: Borland7 versus VisualStudio

... se pudiera añadir un #xcommand DLL64... . También hay funciones GetProcAdd/GetProc32 , FWCallDLL/FWCallDLL32 , LoadLibrary/LoadLib32 y FreeLibrary/FreeLib32 lo que denota que tuviste que adaptar el tema en su tiempo. Gracias. P.D.: Sea como fuere la solución esta aquí (alguien que sepa ingles "técnico" ...
by JmGarcia
Fri Mar 18, 2016 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borland7 versus VisualStudio
Replies: 35
Views: 9364

Re: moving to MSVC 32 bits

Antonio, Just for revision. Those are duplicate warnings: fiveh32.lib(HARBOUR.obj) : warning LNK4006: _HB_FUN_LOADLIB32 ya se definió en fivehc32.lib(CALDLL32.obj); segunda definición omitida fiveh32.lib(HARBOUR.obj) : warning LNK4006: _HB_FUN_FREELIB32 ya se definió en fivehc32.lib(CALDLL32.obj); s...
by lucasdebeltran
Mon Mar 04, 2013 2:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8192

Re: moving to MSVC 32 bits

Antonio, Thank you very much. Appart from that sample, the rest are in Fivewin´s libs. For example: fiveh32.lib(HARBOUR.obj) : warning LNK4006: _HB_FUN_LOADLIB32 ya se definió en fivehc32.lib(CALDLL32.obj); segunda definición omitida fiveh32.lib(HARBOUR.obj) : warning LNK4006: _HB_FUN_FREELIB32 ya s...
by lucasdebeltran
Sun Mar 03, 2013 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: moving to MSVC 32 bits
Replies: 44
Views: 8192

webservice desde FWH

... @xml, ::sbuffer, @Ret) return XML * return subst(alltrim(xml),1,len(alltrim(xml))-5) ***************************** METHOD End() CLASS TdWebService FreeLib32(xDll) return nil ***************************** DLL32 FUNCTION InternetOpen( cApp as LPSTR, n1 AS DWORD, n2 AS LPSTR, n3 AS LPSTR,; n4 AS DWORD ...
by rterraz
Sat May 12, 2012 4:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: webservice desde FWH
Replies: 0
Views: 793

Re: need tcrw.prg for 32 bit

... // // ========================================================================== */ METHOD FREECRPE_() IF ABS( ::hDll ) > 32 IF ::l32 FreeLib32( ::hDll ) ELSE FreeLibrary( ::hDll ) ENDIF ENDIF ::hDll := 0 RETURN .T. // ========================================================================== ...
by jll-fwh
Sun Feb 14, 2010 3:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need tcrw.prg for 32 bit
Replies: 1
Views: 1316

tImage: Image desde campo de DB

... hWnd, hDC ) #endif #ifdef __CLIPPER__ ReleaseDC32( hWnd, hDC ) #else ReleaseDC( hWnd, hDC ) #endif FI_CloseMemory(hMem) #ifdef __CLIPPER__ FreeLib32( hLib ) #else FreeLibrary( hLib ) #endif return hBmp //----------------------------------------------------------------------------// DLL32 ...
by César E. Lozada
Thu Mar 12, 2009 4:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: tImage: Image desde campo de DB
Replies: 5
Views: 1498

Re: Cortar la image

... ) hDib = FILOAD( nSrcFormat, cSrcFile, ) hDib2 = FICOPY( hDib,nX1,nY1,nX2,nY2 ) lOk = FISAVE( nSrcFormat, hDib2, cDstFile, 0 ) #ifdef __CLIPPER__ FREELIB32( hLib ) #else FREELIBRARY( hLib ) #endif return lOk DLL32 STATIC FUNCTION FICOPY( hDib AS LONG, nLeft AS LONG, nTop AS LONG,nRight AS LONG,nBottom ...
by César E. Lozada
Thu Mar 12, 2009 2:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cortar la image
Replies: 6
Views: 1227

... ENDIF IF !EMPTY( cPort ) cCmd += " -P " + cPort ENDIF hDLL = LOADLIB32( "sndmail.dll" ) SMTPLIBOPEN() nRes = SMTPSENDMAIL( cCmd ) SMTPLIBCLOSE() FREELIB32( hDLL ) FERASE( cMsgFile ) RETURN nRes = 0 DLL STATIC FUNCTION SMTPLIBOPEN() AS VOID; PASCAL FROM "USmtpLibOpen" DLL STATIC FUNCTION SMTPSENDMAIL( ...
by Marco Turco
Tue Sep 30, 2008 6:50 pm
 
Forum: All products support
Topic: Inviare un'email
Replies: 13
Views: 3773

Upload files via FTP

... 0, 0 ) // ? FTPPUTFILE( hConnect, "local file", "remote file", 0, 0 ) INETCLOSEHANDLE( hConnect ) INETCLOSEHANDLE( hInternet ) FREELIB32( hLib ) RETURN NIL DLL32 FUNCTION INETOPEN( cAgent AS LPSTR, nAccessType AS DWORD, cProxyName AS LPSTR, cProxyBypass AS LPSTR, nFlags AS DWORD ...
by Romeo
Fri Sep 19, 2008 4:56 pm
 
Forum: All products support
Topic: Upload files via FTP
Replies: 3
Views: 1414

Ayuda con la clase TCRW

... // // ========================================================================== */ METHOD FREECRPE_() IF ABS( ::hDll ) > 32 IF ::l32 FreeLib32( ::hDll ) ELSE FreeLibrary( ::hDll ) ENDIF ENDIF ::hDll := 0 RETURN .T. // ========================================================================== ...
by Ramón J.
Sat May 31, 2008 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con la clase TCRW
Replies: 3
Views: 2520

FiveWin / Internet use Wininet.dll

... uResult = CallDLL( cFarProc , hFile , @sBuffer, nGelesen , @lNumberOfBytesRead ) nGelesen := lNumberOfBytesRead */ iIf( ValType( xdll ) == "N",, FreeLib32( hDLL ) ) else MsgAlert( "Error code: " + LTrim( Str( hDLL ) ) + " loading " + If( ValType( xdll ) == "C", xdll, Str( xdll ) ) ) end return ...
by cgraeber
Tue Sep 04, 2007 11:35 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: FiveWin / Internet use Wininet.dll
Replies: 1
Views: 1861

... - I will have to investigate further **************** #ifdef __HARBOUR__ Function LoadLib32( cDll ) Return LoadLibrary( cDll ) Function FreeLib32( hDll ) Return FreeLibrary( hDll ) Function GetProc32( hDLL, cFunc, lType, nRetType, nPType1, nPType2, nPType3, nPType4, nPType5, nPType6, ...
by peterk
Wed Oct 18, 2006 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CallDll32 funny
Replies: 3
Views: 1350

CallDll32 funny

... security descriptor structure or nil Bool2Int( lInitialOwner ), ; // bInitialOwner, initial owner cName + Chr(0) ) // lpName, object name FreeLib32( hDLL ) If cBuffer # Nil sMutexAttr:cBuffer := cBuffer Endif Else ::Failed( hDLL, cFunc ) Endif Return Self *********************
by peterk
Wed Oct 18, 2006 5:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CallDll32 funny
Replies: 3
Views: 1350

Getting errors with FWH 2.7 July Build

... taskbar_on(ison, lFree) LOCAL hwnd := FindWndByClass("Shell_TrayWnd", "") IF ison ShowWindow(hwnd,5) ELSE ShowWindow(hwnd,0) ENDIF IF lFree FreeLib32("user32.dll") ENDIF RETURN Nil ********** DLL32 Function ShowWindow(hwnd as LONG, nCmdShow as LONG) AS LONG ; PASCAL FROM "ShowWindow" Lib ...
by RAMESHBABU
Sat Jul 22, 2006 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Getting errors with FWH 2.7 July Build
Replies: 1
Views: 586

... ) oGflSaveParams:nQuality = 100 oGflSaveParams:nProgress = 1 nRet = GFLSAVEBMP( cJpg, nGflBitmap, oGflSaveParams:cBuffer ) GFLLIBEXIT() FREELIB32( hLib ) ferase(cWmf) RETURN NIL #include "Struct.ch" STATIC FUNCTION OGFLBITMAP() LOCAL oGflBitmap STRUCT oGflBitmap MEMBER nType AS WORD ...
by Marco Turco
Wed Jun 21, 2006 2:52 pm
 
Forum: All products support
Topic: SALVATAGGIO DI EMF CON FREEIMAGE
Replies: 14
Views: 6207
Next

Return to advanced search