I edited all the bang
function arguments so that they conform to the prototype, but some string
functions are unhappy when that is done, e.g., in this bang:
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"))