WCHAR -> wchar_t

This commit is contained in:
Tropical
2026-03-30 00:27:49 -05:00
parent be2c65486d
commit f03c7163f4
55 changed files with 261 additions and 262 deletions

View File

@@ -177,7 +177,7 @@ void System::ReverseULONGLONG(int64_t* pullVal) {
pchVal1[7] = pchVal2[0];
}
void System::ReverseWCHARA(WCHAR* pwch, int iLen) {
void System::ReverseWCHARA(wchar_t* pwch, int iLen) {
for (int i = 0; i < iLen; i++) {
ReverseUSHORT((unsigned short*)&pwch[i]);
}