added: a new mount type: static

some path in winix can be redirected to a specified static directory


git-svn-id: svn://ttmath.org/publicrep/winix/trunk@738 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2011-06-14 23:45:42 +00:00
parent fb4742e165
commit c49c35cfbd
15 changed files with 355 additions and 31 deletions

View File

@@ -205,7 +205,11 @@ size_t buff_len = sizeof(buff) / sizeof(wchar_t);
void winix_show_content_in_full_window(Info & i)
{
if( cur->request->function )
i.res = (cur->request->function == &functions->fun_ckeditor || cur->request->function == &functions->fun_tinymce);
i.res = (cur->request->function == &functions->fun_ckeditor ||
cur->request->function == &functions->fun_tinymce ||
cur->request->function == &functions->fun_nicedit ||
cur->request->function == &functions->fun_vim ||
cur->request->function == &functions->fun_emacs );
}