Search found 21 matches: bset

Return to advanced search

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

/* * $Id: hbundoc.api 14673 2010-06-03 14:48:23Z vszakats $ */ /* * Harbour Project source code: * Compatibility header file for undocumented C API functions * * Copyright 1999-2001 Viktor Szakats (harbour.01 syenar.hu) * www - http://harbour-project.org * * This program is free software; you can re...
by Compuin
Fri Apr 14, 2017 7:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: clipdefs.h 80: Multiple declaration for 'WORD'
Replies: 9
Views: 1967

Problema al cimpilar con BCC582

Gente Luego de re compilar librerias de 3ros y volviendo a compilar mi proyecto recibo estos mensajes de error: Borland Resource Compiler Version 5.40 Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved. Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland Error: Unresolved exte...
by MarioG
Thu Feb 17, 2011 2:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema al cimpilar con BCC582
Replies: 2
Views: 550

SH ERROR

Error: Unresolved external '__bset' referenced from C:\WORK\FWH\LIB\FIVEHC.LIB|SHFILE my code @ 210,150 RBBTN oBtn[3] PROMPT cBtn_Annulla OF oDlg BITMAP "BTN_NO" LEFT SIZE 60,18 PIXEL ; ACTION SHRestartWindows ( oDlg:hWnd, "Restart Windows -" + CRLF + CRLF )
by Silvio
Mon Dec 06, 2010 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SH ERROR
Replies: 0
Views: 316

Re: _bSet() defined as external on clipapi.h

Antonio;

That did the trick. One more problem solved!

Thank you,


Reinaldo.
by reinaldocrespo
Thu Oct 14, 2010 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

Re: _bSet() defined as external on clipapi.h

Reinaldo,

Simply replace _bset() with memset(). Same parameters and it belongs to standard C runtime functions :-)
by Antonio Linares
Thu Oct 14, 2010 12:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

Re: _bSet() defined as external on clipapi.h

Antonio; Thank you for your reply. Nothing changed. I still get the same error. Perhaps I should have explained that I'm calling _bset() from inside a .c source file that I'm including as part of my project. Maybe there is a substitute for _bset( P_to_str, ch, nbytes )? Any other ideas? Reinaldo.
by reinaldocrespo
Wed Oct 13, 2010 8:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

Re: _bSet() defined as external on clipapi.h

Also:

c:\bcc582\bin\tlib fivehc.lib - nddeapi.obj
by Antonio Linares
Wed Oct 13, 2010 7:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

Re: _bSet() defined as external on clipapi.h

Reinaldo,

Please do this on FiveHC.lib and try to link again:

c:\bcc582\bin\tlib fivehc.lib - shfile.obj
by Antonio Linares
Wed Oct 13, 2010 7:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

_bSet() defined as external on clipapi.h

Hi. I see that _bSet() is declared as an external func in ClipApi.h. The question is: exactly where? MAKE Version 5.2 Copyright (c) 1987, 2000 Borland f:\borland\bcc582\bin\ilink32.exe -Gn -aa -Tpe -s -I\mp\ReleaseBranch\MpAdmin @MAKE0000.@@@ Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borla...
by reinaldocrespo
Wed Oct 13, 2010 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: _bSet() defined as external on clipapi.h
Replies: 5
Views: 1077

Re: Unresolved External __bset con FWH1008

Fantástico Antonio !!!

Muchas Gracias
by renogam
Wed Sep 08, 2010 9:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unresolved External __bset con FWH1008
Replies: 2
Views: 479

Re: Unresolved External __bset con FWH1008

Prueba a añadir este código a tu PRG:
Code: Select all  Expand view
#pragma BEGINDUMP

void * _bset( void * ptr, int value, size_t num )
{
   return memset( ptr, value, num );
}

#pragma ENDDUMP
 
by Antonio Linares
Wed Sep 08, 2010 7:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unresolved External __bset con FWH1008
Replies: 2
Views: 479

Unresolved External __bset con FWH1008

\FWH108\Compras\C:\BCC582\bin\ilink32 -Gn -aa -Tpe -s @b32.bc Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland Error: Unresolved external '__bset' referenced from C:\FWH108\LIB\FIVEHC.LIB|SHFILE Estoy enlazando mi aplicacion con FWH1008 xHarbour 1.2.1 Rev. 6717 y Borland BCC582 debo decir...
by renogam
Wed Sep 08, 2010 7:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Unresolved External __bset con FWH1008
Replies: 2
Views: 479

Sending e-mail from FWPPC app

Hi all, Is any chance to send e-mail directly from FWPPC app ? I'm trying with win_mapisendmail() but function return -1. With mapisendmail() i get compilation errors : FiveCEC.lib(MAPI.obj) : error LNK2019: unresolved external symbol GetProcAddress referenced in function HB_FUN_MAPILOGON FiveCEC.li...
by kadziola
Tue Aug 24, 2010 7:00 am
 
Forum: FiveWin for Pocket PC
Topic: Sending e-mail from FWPPC app
Replies: 2
Views: 746

Re: Select more files

Enrico, I found this ... SETFTIME( hFile, cTime, cDate ) ... #pragma BEGINDUMP #include <windows.h> #include <hbapi.h> #include <clipapi.h> static WORD CharsToWord( LPSTR pChars ) { WORD w = 0; if( pChars[ 0 ] != '0' ) w = ( WORD ) ( ( pChars[ 0 ] - '0' ) * 10 ); if( pChars[ 1 ] !=...
by MarcoBoschi
Fri Oct 30, 2009 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select more files
Replies: 14
Views: 3408

Re: Funcion _bSet()

Antonio,

Gracias, funciono perfecto..

Saludos,
by albeiroval
Thu Oct 29, 2009 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion _bSet()
Replies: 2
Views: 421
Next

Return to advanced search

cron