WebVIew 2.4: tabs

git-svn-id: svn://kolibrios.org@7771 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2020-04-10 16:19:52 +00:00
parent 3f59e384f1
commit 672bbcf6a0
15 changed files with 413 additions and 116 deletions

View File

@@ -51,4 +51,12 @@ inline fastcall void debugln( EDX)
debugln(#tmpch);
}
:void debug_n(dword _text, _size)
{
dword res_text = malloc(_size);
strncpy(res_text, _text, _size-1);
debugln(res_text);
free(res_text);
}
#endif