Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wingui port from @Bill-Gray, backported to the mainline #86

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Watcom requires _wcslwr
Ray Chason committed Feb 27, 2020
commit 23eecaf28323d635e2f085ce7327627ff580880b
2 changes: 1 addition & 1 deletion wingui/pdcscrn.c
Original file line number Diff line number Diff line change
@@ -840,7 +840,7 @@ PDC_argv, and will be used instead of GetCommandLine.
#ifdef __CYGWIN__
/* Can't lowercase Unicode text in Cygwin */
#define my_tcslwr
#elif defined _MSC_VER
#elif defined(_MSC_VER) || defined(__WATCOMC__)
#define my_tcslwr _wcslwr
#else
#define my_tcslwr wcslwr