You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubconstWC_STATICA="Static";
pubconstWC_STATICW=@import("../zig.zig").L(WC_STATICA);
pubconstWC_EDITA="Edit";
pubconstWC_EDITW=@import("../zig.zig").L(WC_EDITA);
pubusingnamespaceswitch(@import("../zig.zig").unicode_mode) {
.ansi=>struct {
pubconstWC_STATIC=WC_STATICA;
pubconstWC_EDIT=WC_EDITA;
},
.wide=>struct {
pubconstWC_STATIC=WC_STATICW;
pubconstWC_EDIT=WC_EDITW;
},
.unspecified=>struct {
pubconstWC_STATIC=@compileError("'WC_STATIC' requires that UNICODE be set to true or false in the root module");
pubconstWC_EDIT=@compileError("'WC_EDIT' requires that UNICODE be set to true or false in the root module");
},
};
The text was updated successfully, but these errors were encountered:
e.g.
zigwin32/win32/ui/controls.zig
Lines 1881 to 1886 in 6777f1d
should be something like
The text was updated successfully, but these errors were encountered: