the problem is not the source code "maindllp.c" but in hbapi.h follows the hbapi.h xharbour antonio could check with your hbapi.h?
http://www.lopes.ms/fw/hbapi.txt
http://www.lopes.ms/fw/hbapi.h
would increase the limit on the number of characters from the board?
now the limit is 60000
could increase to 100,000?
how to compile the file maindllp.c
Re: how to compile the file maindllp.c
Daniel Lopes Filho - Campo Grande,MS,Brasil
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6693) + gtwvw + fw 10.2 + vsx e
fw pcc (ainda não usei)
msn : zazibr@hotmail.com
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6693) + gtwvw + fw 10.2 + vsx e
fw pcc (ainda não usei)
msn : zazibr@hotmail.com
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: how to compile the file maindllp.c
Daniel,
This is the right hbapi.h for xharbour:
http://xharbour.cvs.sourceforge.net/vie ... sion=1.272
This is the right hbapi.h for xharbour:
http://xharbour.cvs.sourceforge.net/vie ... sion=1.272
Re: how to compile the file maindllp.c
change maindllp.c
nos fontes dos xharbour cvs segue abaixo as alterações ja propostas pelo usuario Roberto Parisi
antônio poderia reportar ao pessoal do projeto esse codigo fonte não é mais compilado no xharbour por isso esses erros continuam
a compilação funcionou agora vou tentar gerar a dll e o exe
line 190
before
char * hb_parc( int iParam, ... )
after
const char * hb_parc( int iParam, ... )
line 629
before
char * hb_pards( int iParam, ... ) /* retrieve a date as a string yyyymmdd */
after
const char * hb_pards( int iParam, ... ) /* retrieve a date as a string yyyymmdd */
line 1518
before
ULONG hb_snprintf( char * buffer, ULONG nSize, const char * format, ... )
after
int hb_snprintf( char * buffer, size_t nSize, const char * format, ... )
nos fontes dos xharbour cvs segue abaixo as alterações ja propostas pelo usuario Roberto Parisi
antônio poderia reportar ao pessoal do projeto esse codigo fonte não é mais compilado no xharbour por isso esses erros continuam
a compilação funcionou agora vou tentar gerar a dll e o exe
line 190
before
char * hb_parc( int iParam, ... )
after
const char * hb_parc( int iParam, ... )
line 629
before
char * hb_pards( int iParam, ... ) /* retrieve a date as a string yyyymmdd */
after
const char * hb_pards( int iParam, ... ) /* retrieve a date as a string yyyymmdd */
line 1518
before
ULONG hb_snprintf( char * buffer, ULONG nSize, const char * format, ... )
after
int hb_snprintf( char * buffer, size_t nSize, const char * format, ... )
Daniel Lopes Filho - Campo Grande,MS,Brasil
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6693) + gtwvw + fw 10.2 + vsx e
fw pcc (ainda não usei)
msn : zazibr@hotmail.com
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6693) + gtwvw + fw 10.2 + vsx e
fw pcc (ainda não usei)
msn : zazibr@hotmail.com