enum WindowsEncodingMethod
Description
File encoding options when writing contents that a non-UTF8 tool will read (on Windows systems). For UNIX, we always use UTF-8.
Declared at: llvm/include/llvm/Support/Program.h:145
Enumerators
Name | Value | Comment |
---|---|---|
WEM_UTF8 | 0 | UTF-8 is the LLVM native encoding, being the same as "do not perform encoding conversion". |
WEM_CurrentCodePage | 1 | UTF-8 is the LLVM native encoding, being the same as "do not perform encoding conversion". |
WEM_UTF16 | 2 | UTF-8 is the LLVM native encoding, being the same as "do not perform encoding conversion". |