123456789101112131415161718192021222324252627282930313233343536 |
- By priority:
- do not use command line (Kernel.cmdLine), use env variables instead
- BB_PRIMARY_DIR
- BB_SECONDARY_DIR (instead of /USE)
- cleanup Console
- ConsCompiler:
- interface similar to DevCompiler
- localization:
- Enc:
- utf-8 encoder:
- special case: high surrogate
- utf-8 decoder: fix
- command line: do not use
- env variables:
- decode (encoding = current locale encoding)
- HostConsole:
- encode on printf, encoding = current locale encoding
- decode on Read, encoding = current locale encoding
- filenames:
- HostFiles:
- store encoded (ARRAY OF SHORTCHAR), encoding = currect locale encoding
- display decoded (ARRAY OF CHAR)
- NOTE: Kernel.cmdLine decoded (see ^)
- handle SIGTERM in server version (when Kernel.Start used)
- Comm
- printing (to PostScript)
- GUI:
- ...
|