Search found 19 matches: itemrelease

Return to advanced search

problemas al linkear

Hola. usando harbour y Fwh la ultima. Me arroja estos errores: [1]:iLink32.Exe -Gn -q -aa -Tpe -x @testMaria.bcl Error: Unresolved external 'WinMain' referenced from X:\HARB\BCC7\LIB\C0W32.OBJ Error: Unresolved external '_hb_vmProcessSymbols' referenced from X:\PROYECTOS\TEST\MARIA\OBJ\MARIA.OBJ Err...
by goosfancito
Thu Feb 04, 2021 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas al linkear
Replies: 6
Views: 624

lock params from low level

#include <hbapiitm.h>

PHB_ITEM pBlock = NULL;

...

pBlock = hb_itemParam( 1 ); // 1 for first parameter. Automatically calls hb_gcGripGet()

...

hb_evalBlock0( pBlock );

...

hb_itemRelease( pBlock ); // automatically calls hb_gcGripDrop()
by Antonio Linares
Sun Dec 27, 2020 10:23 am
 
Forum: Utilities / Utilidades
Topic: lock params from low level
Replies: 0
Views: 772

Re: access to window via its :hwnd

... hitem2 ) // pass the dialog //hitem1 := ItemNew( owaitdlg ) //hitem2 := ItemNew( OSAY:hwnd ) //HbDLLEntry2( "TEST3", hItem1, hitem2 ) ItemRelease( hItem1 ) ItemRelease( hItem2 ) FreeLibrary( hDLL ) return nil *********** FUNCTION CR_LF() RETURN CHR(13) + chr(10) ************* **************************************** ...
by don lowenstein
Sat Jan 06, 2018 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: access to window via its :hwnd
Replies: 10
Views: 1994

Al usar hb_itemDoC el aplicativo deja de funcionar

Señores, al alguien sabe de este problema. Al utilizar la instrucción hb_itemDoC el aplicativo deja de funcionar y debo forzar su cierre o también se me bloquea el equipo y debo apagarlo. La idea es ejecutar una función o procedimiento de harbour desde un bloque #pragma BEGINDUMP No se, si es, la de...
by jgayoso
Thu Jun 22, 2017 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Al usar hb_itemDoC el aplicativo deja de funcionar
Replies: 2
Views: 559

Re: create a harbour dll containing functions to be executed

Antonio, I'm not sure that I have the Harbour DLL setup properly. I receive the following error An unhandled exception of type 'System.EntryPointNotFoundException' occurred in WindowsFormsApplication1.exe Additional information: Unable to find an entry point named 'OneParam' in DLL 'Mydll.dll'. This...
by rkurian
Thu Sep 08, 2016 8:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a harbour dll containing functions to be executed
Replies: 23
Views: 4952

Re: Quien sabe como generar informe del estado de la memoria...

Jajaja ya eso lo sé Antonio... El tema es controlar que no me he saltado ningún hb_xfree( ... ) sin querer o ningún itemRelease( ... ) Y esto es en fase de desarrollo así que me da igual que vaya lento... Estoy desarrollando un LIB para acceso a bases de datos con clases hechas en ...
by xmanuel
Fri Jul 17, 2015 6:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Quien sabe como generar informe del estado de la memoria...
Replies: 7
Views: 960

Re: Migrar a Harbour - Errores del compilador

Con lo que dice Antonio queda arreglado ese error. Pero ahora me da otros nuevos en el linkado: call to function hb_itemRelease with no prototipe call to function hb_itemReturn with no prototipe call to function hb_itemArrayNew with no prototipe call to function hb_itemPutC with no prototipe unresol...
by Verhoven
Tue Dec 16, 2014 8:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a Harbour - Errores del compilador
Replies: 29
Views: 6440

Re: Retorno de matriz de C a Harbour

Replace with an example given by Antonio Linares #pragma BEGINDUMP #include <hbapi.h> #include <hbapiitm.h> HB_FUNC( FESTRUCTURA_TABLA ) { PHB_ITEM pArray = hb_itemNew( NULL ); hb_arrayNew( pArray, 4 ); // 4 elements hb_arraySetC( pArray, 1, "Hello" ); // a string hb_arraySetNL...
by jgayoso
Thu Aug 28, 2014 9:27 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Retorno de matriz de C a Harbour
Replies: 1
Views: 1349

Re: Return to Harbour matrix C

Cambie por un ejemplo entregado por Antonio Linares #pragma BEGINDUMP #include <hbapi.h> #include <hbapiitm.h> HB_FUNC( FESTRUCTURA_TABLA ) { PHB_ITEM pArray = hb_itemNew( NULL ); hb_arrayNew( pArray, 4 ); // 4 elements hb_arraySetC( pArray, 1, "Hello" ); // a string hb_arraySe...
by jgayoso
Thu Aug 28, 2014 9:27 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Return to Harbour matrix C
Replies: 1
Views: 1423

Re: Devolver una Matriz o Array desde una función en C

Prueba a añadir esta línea al final y comprueba si sigue funcionando bien, gracias:

hb_itemRelease( pArray );
by Antonio Linares
Mon May 06, 2013 5:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Devolver una Matriz o Array desde una función en C
Replies: 11
Views: 2456

Problemas al crear la libreria TWBROWSE

Estoy intentado crear la libreria TWBROWSE con Harbour 2.0 y FWH 1104 y me dan los siguientes errores: si alguien pudiera ayudarme.... Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland .\source\function\twbrowse\WBRWLINE.C: Error E2356 .\source\function\twbrowse\WBRWLINE.C 38: Type mismat...
by ander7319
Fri Jan 04, 2013 9:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas al crear la libreria TWBROWSE
Replies: 6
Views: 3136

Re: ADS -> AdsRegCallBack()

Hi Reinaldo. I made this function, appending yours, but I receive some errors during compiling process. I'm using Xharbour commercial. I'm doing something wrong ? Thanks a lot. Massimo ************************************************************************** #include "fivewin.ch" #include...
by Massimo Linossi
Fri Aug 10, 2012 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ADS -> AdsRegCallBack()
Replies: 13
Views: 5118

Error al compilar TWBROWSE xHarbour build 1.2.1 y FWH 11.01

Que tal buenas tardes, he estado tratando de compilar la TWbrowse de Hernan sin exito, al intentar generar la libreria con el xedit me manda los siguientes errores: Compilando WBRWLINE.C... Error E2303 WBRWLINE.C 74: Type name expected Error E2141 WBRWLINE.C 98: Declaration syntax error Error E2303 ...
by alex_cyr
Sat Jul 09, 2011 2:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al compilar TWBROWSE xHarbour build 1.2.1 y FWH 11.01
Replies: 7
Views: 2934

how to compile the file TESTMYDL.prg

buildhdp.bat mydll xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6693) Copyright 1999-2010, http://www.xharbour.org http://www.harbour-project.org/ Compiling 'mydll.prg' and generating preprocessed output to 'mydll.ppo'... Lines 20, Functions/Procedures 2 Generating C source output to 'mydll.c'... D...
by zazibr
Tue Mar 16, 2010 7:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to compile the file TESTMYDL.prg
Replies: 1
Views: 470

Re: Descubrir dispositivos via Bluetooth

Perdonar pero no he visto vuestros mensajes, aqui teneis el codigo para mostrar los dispositivos a tu alcance: function main() WSAStartup() nWsaError:=WSALookupServiceBegin(@lphLookup) if nWsaError<>0 // Tenemos un error localizado en wsaError.h do case case nWsaError = WSASERVICE_NOT_FOUND ms...
by softruz
Wed Nov 18, 2009 4:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Descubrir dispositivos via Bluetooth
Replies: 5
Views: 1457
Next

Return to advanced search