void BangWinMove(HWND hCaller, LPCSTR pszArgs)
this line generates errors:
else if (strstr(strlwr(pszArgs),"centered"))
unless it is changed to this:
else if (strstr(strlwr((char *)pszArgs),"centered"))
Is there a set of string functions/typedefs that should be used now for
safety, consistency, and to conform to the current LS core code? Some of thi
s source code is kind of old...