Search found 262 matches: symbols

Searched query: symbols

by Compuin
Sun Jan 19, 2025 10:33 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Archivo de compilacion .mak para Visual Studio
Replies: 39
Views: 25035

Re: Archivo de compilacion .mak para Visual Studio

... MAIN );
HB_FUNC_EXTERN( TWO );
HB_FUNC_EXTERN( THREE );
HB_FUNC_EXTERN( FW_GT );
HB_FUNC_EXTERN( ERRORSYS );
HB_FUNC_INITSTATICS();


HB_INIT_SYMBOLS_BEGIN( hb_vm_SymbolInit_ONE )
{ "MAIN", {HB_FS_PUBLIC | HB_FS_FIRST | HB_FS_LOCAL}, {HB_FUNCNAME( MAIN )}, NULL },
{ "TWO", {HB_FS_PUBLIC}, {HB ...
by Antonio Linares
Mon Nov 18, 2024 6:08 am
Forum: Off Topic / Otros temas
Topic: Chris Langan Vision of Reality
Replies: 0
Views: 3726

Chris Langan Vision of Reality

... self-referential rules
that allow it to process information
just as the Mind processes thought this
makes reality akin to a language with
its own symbols structure and
self-referential intelligence the UN is
thus A system that speaks itself into
existence but what does this mean for
you as a ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 3068

Re: come recuperare il codice fivewin da .c file

... 11, /* DBSELECTAREA */
HB_P_PUSHNIL,
HB_P_PUSHVARIABLE, 2, 0, /* CD */
HB_P_DOSHORT, 1,
HB_P_ENDPROC
/* 00121 */
};

hb_vmExecute( pcode, symbols, NULL );
}
PROCEDURE APRIDBCONPASSWORD( PASSWORD, NOME )
IF PASSWORD == NIL
PASSWORD := "LORRY"
ENDIF
CD := SELECT()
DBUSEAREA( .T., CD ...
by karinha
Mon Jan 29, 2024 2:23 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Cómo omitir el Fichero .TDS?
Replies: 9
Views: 1198

Re: Cómo omitir el Fichero .TDS?

... Exist ARMANDO.Map Del ARMANDO.Map
@If Exist ARMANDO.PPO Del ARMANDO.Ppo
@If Exist ARMANDO.TDS Del ARMANDO.TDS
@If Exist *.Bc Del *.bc
@If Exist ARMANDO.C Del ARMANDO.C
@If Exist ARMANDO.HC Del *.HC

If Exist ARMANDO.Exe Del ARMANDO.Exe


.tds
Categoria: Turbo Debugger Symbols File

Regards, saludos.
by goosfancito
Mon Jan 01, 2024 9:22 am
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Conectarse con mariaDB
Replies: 4
Views: 13231

Conectarse con mariaDB

Buen dia.

Creo saber que esta pasando, no incluí la librería de Mariadb , por lo que tira este error al linkear.
linking...
ld: Undefined symbols:
_HB_FUN_MARIA_CONNECT, referenced from:
_symbols_table in testdlg.o
clang: error: linker command failed with exit code 1 (use -v to see invocation ...
by Enrico Maria Giordano
Wed Nov 22, 2023 10:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 15631

Re: Xlsxlibhb_ver2

Ok, it seems that BCC 7.00 lacks of some symbols. A fast and dirty hack can be as per sample below. But the obvious solution is to drop such an old compiler and switch to a newer version.

// Typical Welcome message, from Windows!

#include "FiveWin.ch ...
by ruben Dario
Thu Sep 21, 2023 4:57 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Errror al compilar en Minigui o Gcc
Replies: 1
Views: 402

Errror al compilar en Minigui o Gcc

... k:/c_mingw/mingw111_32/bin/../lib/gcc/i686-w64-mingw32/11.1.0/../../../../i686-w64-mingw32/bin/ld.exe: \v_xharb_v3\lib\Harb_miw/libtwbrwx32_h.a: error adding symbols: archive has no index; run ranlib to add one
collect2.exe: error: ld returned 1 exit status

Alguien sabe comose usa el ranlib

Gracias
by Jimmy
Mon Jun 19, 2023 9:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: build Import LIB from LibPQ.DLL
Replies: 37
Views: 6162

Re: build Import LIB from LibPQ.DLL

... Options:
-a Add '_' alias for MS flavor cdecl functions
-aa Force the alias even if the function already starts with '_'
-c Case sensitive symbols
-f Force imports by name (with hints)
-s Don't convert stdcall names from Microsoft mangling
-w No Warnings
! Note : i have LibPQ. DLL (32/64 ...
by Antonio Linares
Sat Jun 03, 2023 7:50 am
Forum: FiveWin para Harbour/xHarbour
Topic: Crear HBSSL.LIB con CMS para firma de Xml
Replies: 24
Views: 3673

Re: Crear HBSSL.LIB con CMS para firma de Xml

... Options:
-a Add '_' alias for MS flavor cdecl functions
-aa Force the alias even if the function already starts with '_'
-c Case sensitive symbols
-f Force imports by name (with hints)
-s Don't convert stdcall names from Microsoft mangling
-w No Warnings

Respfile may contain a list of ...
by Antonio Linares
Tue May 02, 2023 9:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 672

Protecting certain functions to be used

... runtime Harbour compiler (hbcplr.lib), sometimes you may want to avoid the use of certain Harbour functions. This code allows you to protect the symbols that you don't want to be used:

Fill the array { "QOut" } to include all the symbols that you want to protect. Next version will allow to restore ...
by Antonio Linares
Tue Apr 25, 2023 7:08 am
Forum: Utilities / Utilidades
Topic: How to build Harbour 32 & 64 bits
Replies: 38
Views: 47859

Re: How to build Harbour 32 & 64 bits

... c'}-cpp=no

-warn=yes


Finlly, when trying to build hbrun.exe we get this error:
Fatal: Archive file 'C:\BCC7164\LIB\PSDK\UUID.A' lists no symbols in its dictionary
to solve it, go to c:\bcc7164\lib\psdk and do this:
copy UUID.a UUID_.a
copy USP10.a UUID.a
UUID.a seems corrupted and it is ...
by Antonio Linares
Wed Feb 08, 2023 8:47 am
Forum: All products support
Topic: leggere test,hrb
Replies: 9
Views: 25309

Re: leggere test,hrb

HRB files (Harbour Portable Object) contain pcode and the symbols table, so you can load them and run them, at runtime

You can create them using harbour.exe with the -gh flag
by Antonio Linares
Tue Nov 01, 2022 7:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: CodeBlock
Replies: 2
Views: 430

Re: CodeBlock

... github.com/harbour/core/blob/master/include/hbapi.h
typedef struct _HB_CODEBLOCK
{
const HB_BYTE * pCode; /* codeblock pcode */
PHB_SYMB pSymbols; /* codeblocks symbols */
PHB_SYMB pDefSymb; /* symbol where the codeblock was created */
PHB_ITEM pLocals; /* table with referenced local ...
by AntoninoP
Wed Oct 12, 2022 3:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: The simplest way to build from vscode
Replies: 3
Views: 666

Re: The simplest way to build from vscode

... The goods of this task type is: if you configure a setupBatch it is called only the first time with a little time saving, if you enable debug symbols (using "debugSymbols": true) it uses the code from the extension in this way it is always the latest.

For an example of it see https://github ...
by Marc Venken
Wed Sep 14, 2022 8:31 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: All functions, classes, methods with source code
Replies: 15
Views: 2241

Re: FWH: All functions, classes, methods with source code

Making the lib is ok.

The program is making a LST file from the lib, but when I make a LST file from my lib

WaitRun( cBccFolder + "bin\tlib.exe ..\lib\maveco.lib, maveco.lst " )

the content is :

No public symbols exist.