| 256 | } |
| 257 | |
| 258 | FlashValue FlashControl::callFunction(MyGUI::UString funcName, const Arguments& args) |
| 259 | { |
| 260 | BSTR returnVal = 0; |
| 261 | flashInterface->raw_CallFunction(_bstr_t(serializeInvocation(funcName, args).c_str()), &returnVal); |
| 262 | |
| 263 | return deserializeValue((wchar_t*)returnVal); |
| 264 | } |
| 265 | |
| 266 | void FlashControl::injectMouseMove(int xPos, int yPos) |
| 267 | { |
nothing calls this directly
no test coverage detected