The mouseclick command from the initialization of cmd_hidden (see below) provokes the warning "warning C4245: 'initializing' : conversion from 'int' to 'unsigned char', signed/unsigned mismatch". (VC++ on level 4).
Unless I'm mistaken \xff is 255 which is the last of the unsigned char range, so I don't know why VC++ thinks it is an int...
Code:
{ "Mouse click", '\xff', do_cmd_mouseclick }
Comment