http://bugs.winehq.org/show_bug.cgi?id=59563 Bug ID: 59563 Summary: printf does not support %Z Product: Wine Version: 11.5 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msvcrt Assignee: wine-bugs@list.winehq.org Reporter: me@trungnt2910.com Distribution: --- Created attachment 80621 --> http://bugs.winehq.org/attachment.cgi?id=80621 C++ example program This simple C++ program prints "Hello World!" on Windows: #include <cstdio> #include <winternl.h> int main() { wchar_t string[] = L"Hello World!"; UNICODE_STRING unicodeString { sizeof(string), sizeof(string), string }; printf("%Z\n", &unicodeString); return 0; } On Wine, it prints just "Z", meaning that this specifier is not supported. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.