contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / contrib / ftos2 / query.cmd
blob532c8e605b09ae3ce3e5a51fffe2929b7688e92d
1 /* */
2 call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
3 call SysLoadFuncs
5 app = "PM_Font_Drivers"
6 key = "TRUETYPE"
8 val = SysIni('USER', app, key)
10 if val = "ERROR:" then val = "none"
11 /* strip the terminating NULL character */
12 else val = substr(val, 1, pos(d2c(0), val) - 1)
14 say 'The current TrueType driver is ' || val
15 pause