I've added the bindings, will show the patch later...
But now I have another problem:
In script console I type:
Log(_T("test") == _T("test") ? _T("yes") : _T("no"));
and in the log I see "no", but if I type:
Log(1 == 1 ? _T("yes") : _T("no"));
I see "yes" in the log.
It seems that there is a wxString_OpCmp, but the debugger doesn't stop on the breakpoint, I've set there

So the question is how to compare wxStrings in squirrel?