Searched refs:OPT_ENC_DOS (Results 1 – 3 of 3) sorted by relevance
/dports/security/rhash/RHash-1.4.2/ |
H A D | win_utils.c | 108 codepage = (opt.flags & OPT_UTF8 ? CP_UTF8 : (opt.flags & OPT_ENC_DOS) ? CP_OEMCP : CP_ACP); in wchar_to_cstr() 139 int codepage = (is_utf8 ? CP_UTF8 : (opt.flags & OPT_ENC_DOS) ? CP_OEMCP : CP_ACP); in convert_str_to_wcs() 162 int codepage = (is_utf8 ? CP_UTF8 : (opt.flags & OPT_ENC_DOS) ? CP_OEMCP : CP_ACP); in convert_wcs_to_str() 345 …console_data.primary_codepage = (opt.flags & OPT_UTF8 ? CP_UTF8 : (opt.flags & OPT_ENC_DOS) ? CP_O… in setup_console() 346 …console_data.secondary_codepage = (!(opt.flags & OPT_UTF8) ? CP_UTF8 : (opt.flags & OPT_ENC_DOS) ?… in setup_console() 368 setlocale(LC_CTYPE, opt.flags & OPT_ENC_DOS ? ".OCP" : ".ACP"); in setup_console()
|
H A D | parse_cmdline.h | 56 OPT_ENC_DOS = 0x40000000, enumerator 57 OPT_ENCODING = OPT_UTF8 | OPT_ENC_WIN | OPT_ENC_DOS,
|
H A D | parse_cmdline.c | 455 { F_UENC, 0, 0, "dos", 0, &opt.flags, OPT_ENC_DOS }, 458 { F_UENC, 0, 0, "oem", 0, &opt.flags, OPT_ENC_DOS },
|