Includes all other modules and contains common or general procs. More...
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... | |
Includes all other modules and contains common or general procs.
Definition in file fbdbg2_main.bas.
Sub ini_main | ( | void | ) |
global initializations
'#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.