Show
Ignore:
Timestamp:
09/09/10 20:23:50 (21 months ago)
Author:
westram
Message:
  • merged from refactor [6796] [6804] [6806] [6808]
    • added header for planned library ARB_CORE
    • renamed inline.h into arb_str.h
    • header for global general purpose defines/inlines (arb_defs.h)
      • use ARRAY_ELEMS where applicable
    • removed duplicate of ARB_strscmp (GBS_strscmp). No longer needed cause ARBDB is now C++
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ARBDB/adlang1.cxx

    r6659 r6813  
    1919 
    2020#include <static_assert.h> 
     21#include <arb_defs.h> 
    2122 
    2223#define AWAR_TREE_REFRESH "tmp/focus/tree_refresh" // touch this awar to refresh the tree display 
     
    26922693}; 
    26932694 
    2694 void gbl_install_standard_commands(GBDATA *gb_main) 
    2695 { 
    2696     gb_install_command_table(gb_main, gbl_command_table, sizeof(gbl_command_table)/sizeof(gbl_command_table[0])); 
    2697 } 
     2695void gbl_install_standard_commands(GBDATA *gb_main) { 
     2696    gb_install_command_table(gb_main, gbl_command_table, ARRAY_ELEMS(gbl_command_table)); 
     2697}