Ignore:
Timestamp:
2000-07-13T10:21:53+12:00 (24 years ago)
Author:
sjboddie
Message:

merged changes to trunk into New_Config_Format branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/New_Config_Format-branch/gsdl/lib/gsdltools.h

    r1076 r1279  
    3838bool littleEndian();
    3939
     40// escapes '\' and '_' characters with '\'
     41// note that single '\' characters occurring
     42// naturally within text (or filenames!!) will
     43// be removed by the dm macro language
     44text_t dm_safe (const text_t &instring);
     45
     46
     47// gsdl_system spawns a completely separate program (i.e. the calling
     48// program continues and terminates normally). Arguments containing special
     49// characters (e.g. '&') should be quoted with ""
     50
     51// on unix systems youcan get the same effext as this function by doing a
     52// system call and putting the spawned process in the background
     53// (e.g. system (funcname options &);
     54#if defined (__WIN32__)
     55void gsdl_system (char *cmd, ostream &logout);
    4056#endif
     57
     58#endif
Note: See TracChangeset for help on using the changeset viewer.