├── .gitattributes ├── .gitignore ├── Debug.props ├── Dynamic.props ├── README.md ├── Release.props ├── Static.props ├── UNLICENSE.txt ├── entry_main.c ├── entry_winmain.c ├── os_compat.png ├── src ├── build.c ├── comdlg32_dll.c ├── comdlg32_dll.h ├── dsound_dll.c ├── dsound_dll.h ├── entry.c ├── entry.h ├── gdi32_dll.c ├── gdi32_dll.h ├── kernel32_dll.c ├── kernel32_dll.h ├── macros.c ├── macros.h ├── message_enum.h ├── msvcrt_dll.c ├── msvcrt_dll.h ├── psapi_dll.c ├── psapi_dll.h ├── shell32_dll.c ├── shell32_dll.h ├── shlwapi_dll.c ├── shlwapi_dll.h ├── user32_dll.c ├── user32_dll.h ├── utf.c ├── utf.h ├── version_dll.c ├── version_dll.h ├── win32_utf8.c ├── wininet_dll.c ├── wininet_dll.h ├── wrappers.c └── wrappers.h ├── win32_utf8.def ├── win32_utf8.h ├── win32_utf8.vcxproj ├── win32_utf8_build_dynamic.c └── win32_utf8_build_static.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/Debug.props -------------------------------------------------------------------------------- /Dynamic.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/Dynamic.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/README.md -------------------------------------------------------------------------------- /Release.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/Release.props -------------------------------------------------------------------------------- /Static.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/Static.props -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /entry_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/entry_main.c -------------------------------------------------------------------------------- /entry_winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/entry_winmain.c -------------------------------------------------------------------------------- /os_compat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/os_compat.png -------------------------------------------------------------------------------- /src/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/build.c -------------------------------------------------------------------------------- /src/comdlg32_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/comdlg32_dll.c -------------------------------------------------------------------------------- /src/comdlg32_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/comdlg32_dll.h -------------------------------------------------------------------------------- /src/dsound_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/dsound_dll.c -------------------------------------------------------------------------------- /src/dsound_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/dsound_dll.h -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/entry.h -------------------------------------------------------------------------------- /src/gdi32_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/gdi32_dll.c -------------------------------------------------------------------------------- /src/gdi32_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/gdi32_dll.h -------------------------------------------------------------------------------- /src/kernel32_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/kernel32_dll.c -------------------------------------------------------------------------------- /src/kernel32_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/kernel32_dll.h -------------------------------------------------------------------------------- /src/macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/macros.c -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/message_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/message_enum.h -------------------------------------------------------------------------------- /src/msvcrt_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/msvcrt_dll.c -------------------------------------------------------------------------------- /src/msvcrt_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/msvcrt_dll.h -------------------------------------------------------------------------------- /src/psapi_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/psapi_dll.c -------------------------------------------------------------------------------- /src/psapi_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/psapi_dll.h -------------------------------------------------------------------------------- /src/shell32_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/shell32_dll.c -------------------------------------------------------------------------------- /src/shell32_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/shell32_dll.h -------------------------------------------------------------------------------- /src/shlwapi_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/shlwapi_dll.c -------------------------------------------------------------------------------- /src/shlwapi_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/shlwapi_dll.h -------------------------------------------------------------------------------- /src/user32_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/user32_dll.c -------------------------------------------------------------------------------- /src/user32_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/user32_dll.h -------------------------------------------------------------------------------- /src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/utf.c -------------------------------------------------------------------------------- /src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/utf.h -------------------------------------------------------------------------------- /src/version_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/version_dll.c -------------------------------------------------------------------------------- /src/version_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/version_dll.h -------------------------------------------------------------------------------- /src/win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/win32_utf8.c -------------------------------------------------------------------------------- /src/wininet_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/wininet_dll.c -------------------------------------------------------------------------------- /src/wininet_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/wininet_dll.h -------------------------------------------------------------------------------- /src/wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/wrappers.c -------------------------------------------------------------------------------- /src/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/src/wrappers.h -------------------------------------------------------------------------------- /win32_utf8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/win32_utf8.def -------------------------------------------------------------------------------- /win32_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/win32_utf8.h -------------------------------------------------------------------------------- /win32_utf8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/win32_utf8.vcxproj -------------------------------------------------------------------------------- /win32_utf8_build_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/win32_utf8_build_dynamic.c -------------------------------------------------------------------------------- /win32_utf8_build_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thpatch/win32_utf8/HEAD/win32_utf8_build_static.c --------------------------------------------------------------------------------