Пример #1
0
        public static void CheckError()
        {
            int code = BrowserInterop.vtsErrCode();

            if (code != 0)
            {
                string msg = CStringToSharp(BrowserInterop.vtsErrMsg());
                BrowserInterop.vtsErrClear();
                throw new VtsException(code, msg);
            }
        }