void foo(TCHAR c) { switch(c) { case _T('A'): break; case _T('C'): break; case _T('D'): break; } } int main() { foo(_T('A')); }