Alexey Melnichuk

Results 86 issues of Alexey Melnichuk

I'll try to add comments in the code

Problem that if buf has partial line e.g. `SETB fi` the mobdebug will not recognize it as a set breakpoint command.

Is there any guidlines for code style for this module? E.g. is it safe to decompose `debug_loop` function? Righ now I working on addition a new protocol and it will...

My use case now is work with server which creates separate coroutine for each request. So code looks like this ```Lua mobdebug.coro() mobdebug.start() mobdebug.off() function handler() -- this function calls...

LuaCOM [convert true to 1](https://github.com/davidm/luacom/blob/master/src/library/tLuaCOMTypeHandler.cpp#L664-L667) not to VARIANT_TRUE (wich is -1) ``` C++ case LUA_TBOOLEAN: varg.vt = VT_BOOL; varg.boolVal = lua_toboolean(L, luaval); ``` Some Interfaces does not accept this value...

https://github.com/moteus/luacom/commit/0542f4b519fbba8b5469b7201e1a62aa11c7fa9e I found problem with some Microsoft interfaces wich crashes when you try send 1-based arrays. And because VBS uses 0-based arrays I think it should be safer use it....

Now problem with Windows that there no `config.h` files. And it require install mingw to be able use configure. I add this [config.h](https://github.com/moteus/alien/blob/master/src/config.h) file to my project ``` C /*...