Search found 24 matches: storc

Return to advanced search

HMG 64 Bit Constante -> FiveWin ?

hi,

HMG use Prefix "HMG_" for 64 Bit compatible Way
HMG_parnl
HMG_parvc
HMG_parc

HMG_arrayGetCPtr

HMG_retc
HMG_retnl
HMG_storc
HMG_storvnl
HMG_storvc

did FiveWin have a Prefix for 64 Bit ( fw_ ) :?:
by Jimmy
Wed Oct 19, 2022 6:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HMG 64 Bit Constante -> FiveWin ?
Replies: 23
Views: 1247

Re: Ayuda FWH 2006 xHB a FWH 2014 Harbour

Una cosa solucionada.

El error en C es que hay que cambiar hb_storc POR hb_storvc.


Por si a alguien le sirve.


Un Saludo,
Joaquín Martínez
by jmartial
Fri Sep 05, 2014 7:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda FWH 2006 xHB a FWH 2014 Harbour
Replies: 5
Views: 1044

Ayuda FWH 2006 xHB a FWH 2014 Harbour

Hola, Necesito pasar una aplicación bastante grande, desde FWH del 2.006 con xHarbour a FWH 2014 con Harbour. Me encuentro varios problemas al compilar y no encuentro cual es la razón, a ver si alguien me puede orientar. 1) En una definición de clase, si uso PRIVATE: o PUBLIC: para definir las DATA´...
by jmartial
Fri Sep 05, 2014 7:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda FWH 2006 xHB a FWH 2014 Harbour
Replies: 5
Views: 1044

Return to Harbour matrix C

Help in Linux with FiveLinux and Harbour t:=fEstructura_Tabla() msgalert(len(t)) <----- Return 2 msgalert(t[1]) <-----Returns NIL instead of "nombre" # pragma BEGINDUMP #include <hbapi.h> HB_FUNC (FESTRUCTURA_TABLA) { const char* cNombreCampo = "nombre"; const char* c...
by jgayoso
Thu Aug 28, 2014 8:50 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Return to Harbour matrix C
Replies: 1
Views: 1052

Retorno de matriz de C a Harbour

Ayuda, en Linux con FiveLinux y Harbour t:=fEstructura_Tabla() msgalert(len(t)) <--------- Retorno 2 msgalert(t[1]) <--------- Retorna NIL en vez de "nombre" # pragma BEGINDUMP #include <hbapi.h> HB_FUNC (FESTRUCTURA_TABLA) { const char* cNombreCampo = "nombre"; const...
by jgayoso
Thu Aug 28, 2014 8:46 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Retorno de matriz de C a Harbour
Replies: 1
Views: 892

Re: DLL

Dear Antonio, still error : ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ FiveWin for Pocket PC - February 2010 Harbour development power ³Ü ³ (c) FiveTech Software, 1993-2010 for Microsoft Windows Pocket PC ³Û ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ...
by kok joek hoa
Fri May 25, 2012 4:41 am
 
Forum: FiveWin for Pocket PC
Topic: DLL
Replies: 59
Views: 97870

Re: DLL

Hi Antonio, Thank you for your help, but still error : ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ FiveWin for Pocket PC - February 2010 Harbour development power ³Ü ³ (c) FiveTech Software, 1993-2010 for Microsoft Windows Pocket PC ³Û ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ...
by kok joek hoa
Thu May 24, 2012 4:32 pm
 
Forum: FiveWin for Pocket PC
Topic: DLL
Replies: 59
Views: 97870

Re: DLL

#pragma BEGINDUMP #include <windows.h> #include <hbapi.h> LONG GetReaderInfo( LPWSTR ,LPWSTR ,LPWSTR ,LPWSTR ,LPWSTR ) ; LPWSTR AnsiToWide( LPSTR ); HB_FUNC( GETREADERINFO ) { LPWSTR ComAdr = AnsiToWide( (char *) hb_parc( 1 ) ); LPWSTR VersionInfo = AnsiToWide( (char *) hb_parc( 2 ) ); L...
by Antonio Linares
Thu May 24, 2012 2:55 pm
 
Forum: FiveWin for Pocket PC
Topic: DLL
Replies: 59
Views: 97870

Re: Código C rebelde

Paquito,

¿que pasa si en un funcion c cambias, en donde tienes 3 parámetros, hb_storc por hb_storvc()?

esa sería la corrección para el Harbour nuevo, no se como funcionaría con xharbour.
by Carlos Mora
Thu May 03, 2012 11:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Código C rebelde
Replies: 7
Views: 2554

Re: Código C rebelde

Antonio, Gracias por la respuesta. He intentado: 1º Copiar la definicion (extern) del hb_storc que hay en hbapi.h al principio del puente (da error de compilacion) seguramente por repeticion. 2º Poner el extend.api y el habapi.h de la version de xHarbour en el directorio del fuente .c y no ha habido...
by hmpaquito
Wed May 02, 2012 8:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Código C rebelde
Replies: 7
Views: 2554

Re: Código C rebelde

hm,

Comprueba si la definición que tienes en hbapi.h es esta:

extern HB_EXPORT void hb_storc( const char * szText, int iParam, ... );

y asegurate que hayas cambiado los paths a otra carpeta y estes usando otro fichero hbapi.h
by Antonio Linares
Tue May 01, 2012 10:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Código C rebelde
Replies: 7
Views: 2554

Código C rebelde

Hola, Vaya por delante que no entiendo el lenguaje Fuentes C que "siempre" han funcionado empiezaz a dar errores en la compilacion y siempre en la misma funcion: hb_storc(). Veo que la funcion tiene como 2 parametros "fijos" aunque parece (por el .h) que admite mas. El problema s...
by hmpaquito
Mon Apr 30, 2012 5:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Código C rebelde
Replies: 7
Views: 2554

Pregunta tecnica sobre Harbour

Hola gente, estoy recompilando un programa que originalmente escribí con Harbour del 2008 (el de FWH 8.08) y ahora al compilar se queja donde uso hb_storc() con más de un parámetro. Error E2227 Conexion.prg 644: Extra parameter in call to hb_storc in function HB_FUN_INTERNETEX línea que dice: hb_sto...
by Carlos Mora
Tue Jan 10, 2012 9:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta tecnica sobre Harbour
Replies: 0
Views: 304

New FTDN October/Octubre 2011 (FWH 11.10)

* Fix: functions ReGetCharFormat() and RegGetSelection() incorrectly used hb_storvnl() instead of hb_stornl() * Fix: functions RegEnumKey() and RegEnumValue() incorrectly used hb_storvc() and hb_storvnl() instead of hb_storc() and hb_stornl() * Fix: functions RegQueryValueEx() and RegCreateKey() inc...
by Antonio Linares
Wed Nov 02, 2011 1:24 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2011 (FWH 11.10)
Replies: 3
Views: 4219

Re: How can recompile FW libraries?

... Warning W8065 unzip.c 63: Call to function 'STORNI' with no prototype in function GETFIRSTIN Warning W8065 unzip.c 64: Call to function 'STORC' with no prototype in function GETFIRSTIN Warning W8065 unzip.c 74: Call to function 'STORC' with no prototype in function GETFIRSTIN Warning ...
by mosh1
Mon Oct 10, 2011 11:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How can recompile FW libraries?
Replies: 23
Views: 5581
Next

Return to advanced search