リソース文字列をUnicodeにアップグレードする際は、Lプレフィックスを忘れずに指定しましょう
リソース文字列をUnicode対応にアップグレードするとき、文字列リテラルの前に「L」プレフィックスを付けないと、8ビットコードページにマッピングされてしまい、Unicodeとして正しく扱われません。適切にLプレフィックスを指定することで、意図したUnicode文字列として正しく解釈されるようになります。
リソース文字列をUnicode対応にアップグレードするとき、文字列リテラルの前に「L」プレフィックスを付けないと、8ビットコードページにマッピングされてしまい、Unicodeとして正しく扱われません。適切にLプレフィックスを指定することで、意図したUnicode文字列として正しく解釈されるようになります。
Larkos underwent code and file restructuring to simplify writing, reduce file sizes, and remove redundant code. The update also fixed numerous bugs and included a major rewrite of the README on GitHub.
A blog post examines a claim that changing a hyphen to an en-dash in a PDF increases file size by about 10 bytes. The author initially suspected the reason might be that a hyphen is an ASCII character while an en-dash is not, which would affect encoding.