Search found 16 matches: fhandle

Return to advanced search

Re: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?

iSize = hb_fsReadLarge( fHandle , ( BYTE * ) FromBuffer , iSize );
por
iSize = hb_fsReadLarge( fHandle , ( void * ) FromBuffer , iSize );
by xmanuel
Fri Dec 07, 2018 9:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?
Replies: 4
Views: 1158

Re: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?

... iSize = hb_fsFSize( szFile, FALSE ); E:\ToolsDeveloper\tdolphin\source\c\function.c:1118:60: error: expected expression iSize = hb_fsReadLarge( fHandle , ( BYTE * ) FromBuffer , iSize ); E:\ToolsDeveloper\tdolphin\source\c\function.c:1133:26: error: use of undeclared identifier 'TRUE' bResult ...
by gabo
Tue Dec 04, 2018 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: compilar TDolphin Harbour 3.4 alguien que me pueda orientar?
Replies: 4
Views: 1158

Re: Intercambiando datos con DLL Pascal

... un ini. Pero logre pasar paremetros de esta manera @Largo cuando es un string.. function incios... OCAL cDllName:="SCLib.DLL" Local fHandle:=0 Local ACR120libHandle := LoadLibrary( cDllName) HaveTag :=space(150) SerialNum :=space(110) Largo :=0 TagType :=space(50) RTag :=0 RSn :=space(7) ...
by Busmatic_wpb
Sun Nov 26, 2017 4:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Intercambiando datos con DLL Pascal
Replies: 5
Views: 914

Re: Creating an XML file

... of the class is in \source\rtl\txml.prg, if you've downloaded (x)harbour source code. There even is a Method Write, which takes two parameters: fHandle and nStyle So if you've created a new file and have the handle in fHandle, you could simply call: oXml:Write( fHandle )
by gkuhnert
Thu Jul 27, 2017 12:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating an XML file
Replies: 9
Views: 1957

Re: clipdefs.h 80: Multiple declaration for 'WORD'

... ) #else #include "C3UnDoc.api" #endif void DimeC( char * ); void DimeN( long ); char * _MyClType( int ); unsigned long MyFileLength( FHANDLE ); void _MyCToCl( char *, unsigned long ); void _MyDToCl( char * );
by Compuin
Fri Apr 14, 2017 3:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: clipdefs.h 80: Multiple declaration for 'WORD'
Replies: 9
Views: 2036

Re: Need CURL syntax with fivewin using HBCURL LIB?

Here it is: /* * libcurl 'easy' API - Harbour header. * * Copyright 2008 Viktor Szakats (vszakats.net/harbour) * originally based on: * Copyright 2005 Luiz Rafael Culik Guimaraes <luiz at xharbour.com.br> * * This program is free software; you can redistribute it and/or modify * it under the t...
by ADutheil
Tue Nov 01, 2016 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need CURL syntax with fivewin using HBCURL LIB?
Replies: 10
Views: 4849

Re: Migrando de FWH 32 a FWH 64 - windows.h

Paz,

Cambia esta línea asi:

hb_fsClose( ( HB_FHANDLE ) fichero);
by Antonio Linares
Sun Jan 11, 2015 9:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de FWH 32 a FWH 64 - windows.h
Replies: 79
Views: 19188

Re: Migrando de FWH 32 a FWH 64 - hb_fsOpen() fopen() en C

... esto, al compilar, nos da el siguiente error: internet.prg(461) : warning C4047: '=' : 'FILE *' differs in levels of indirection from 'HB_FHANDLE' Y no obstante, no estoy seguro de si además sería conveniente hacer una conversión de tipos de las variables que se le pasan a hb_fsOpen(), ...
by Verhoven
Tue Jan 06, 2015 6:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrando de FWH 32 a FWH 64 - windows.h
Replies: 79
Views: 19188

Re: Cover Flow

... the code that we need to port is: FUNCTION FreeImage_LoadDIBFromHandle( BYVAL hDC AS LONG, BYVAL fHandle AS DWORD ) AS LONG Its not difficult. We can work on that from next week on.
by Antonio Linares
Fri Aug 24, 2012 5:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cover Flow
Replies: 10
Views: 5607

Error al hacer make fivephone

Muy buenas, por fin tengo un Hackintosh en mi PC, quien quiera le doy informacion de como instalarlo, bueno entonces ya empiezo a querer generar aplicaciones para el iPhone, he seguido algunos pasos pero me he quedado atascado: 1- Me he creado una carpeta llamada harbour y alli he metido - harbour -...
by softruz
Mon Dec 06, 2010 10:56 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 131660

Re: Problema con Button y Setfocus()

... procedure to set the keyboard focus to a different control in the dialog box. WM_NEXTDLGCTL wCtlFocus = wParam; // identifies control for focus fHandle = (BOOL) LOWORD(lParam); // wParam handle flag Parameters wCtlFocus Value of wParam. If the fHandle parameter is TRUE, the wCtlFocus parameter ...
by andresreyes_mzt
Thu Aug 19, 2010 6:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con Button y Setfocus()
Replies: 13
Views: 4728

Re: How Translate this function in Delphi to FWH

Lailton, You can use these functions from [x]Harbour: PRG functions: HB_MD5( <cString> ) -> <cMD5> Calculates RFC 1321 MD5 digest (128-bit checksum) Parameters: <cString> - string variable to calculate MD5 Returns: ASCII hex MD5 digest as 32-byte string empty string on error HB_...
by Antonio Linares
Thu Oct 22, 2009 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How Translate this function in Delphi to FWH
Replies: 2
Views: 541

Re: LETOdb & xHarbour

Al compilar me tira este error: MAKE Version 5.2 Copyright (c) 1987, 2000 Borland bcc32 -c -Iinclude;C:\XHB0809\include -d -tWM -D__WIN32__ -D__WIN_DAEMON__ -oobj\b32\leto1.obj source\client\leto1.c Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland source\client\leto1.c: Error E2257 inclu...
by sysctrl2
Wed Jul 22, 2009 9:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LETOdb & xHarbour
Replies: 2
Views: 546

SOLUCIONADO. Cambio de hDataFile a pDataFile en HBRddDbf.h

... En el fichero HbRddDbf.h de Harbour, existe la declaración de la estructura _DBFAREA. En la versión 8.01 uno de sus 'valores' era declarado así: FHANDLE hDataFile; /* Data file handle */ En la versión 9.01 ese mismo 'valor' es declarado así: PHB_FILE pDataFile; /* Data file handle */ Tengo una ...
by FiveWiDi
Fri Mar 20, 2009 7:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SOLUCIONADO. Cambio de hDataFile a pDataFile en HBRddDbf.h
Replies: 3
Views: 507

... = hb_param( 1, HB_IT_STRING ); PHB_ITEM pString = hb_param( 2, HB_IT_STRING ); BOOL bRetVal = FALSE; if( pFileName && pString ) { FHANDLE fhnd = hb_fsCreate( ( BYTE * ) pFileName->item.asString.value, FC_NORMAL ); if( fhnd != FS_ERROR ) { ULONG ulSize = pString->item.asString.length; ...
by Vladimir Grigoriev
Wed Apr 12, 2006 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memowrit Question
Replies: 13
Views: 4979
Next

Return to advanced search