fbdbg  3.0
FreeBASIC Debugger
fbdbg2_main.bas File Reference

Includes all other modules and contains common or general procs. More...

Include dependency graph for fbdbg2_main.bas:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Sub str_replace (As_String strg, As_String srch, As_String repl)
 
Sub dbg_prt (As_String t)
 
Sub re_ini ()
 
Function_As_Integer kill_process (As_String text)
 
Sub simple_message (As_String line1, As_String line2=" ")
 
Sub ini_main (void)
 global initializations More...
 

Detailed Description

Includes all other modules and contains common or general procs.

Since
3.0

Definition in file fbdbg2_main.bas.

Function Documentation

Sub ini_main ( void  )

global initializations

Todo:
add test for 32 and 64bit as integer is not the same

'#if defined( FB_64BIT ) and (not defined( FB_WIN32)) ' '' On 64bit Linux/BSD systems (but not 64bit Windows), C's long is ' '' 64bit like FB's integer. ' '' Note: Using 64bit Integer here instead of LongInt, to match fbc's ' '' mangling: on 64bit Linux/BSD, Integer is mangled to C's long. ' type clong as integer ' type culong as uinteger '#else ' '' On 32bit systems and 64bit Windows, C's long is 32bit like FB's long. ' '' Note: Using 32bit Long here instead of 32bit/64bit Integer, because ' '' this is also used for 64bit Windows where Integer isn't 32bit. ' type clong as long ' type culong as ulong '#EndIf

Definition at line 250 of file fbdbg2_main.bas.