mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-11 16:20:20 +00:00
portable mode enabled in runtime
This commit is contained in:
14
src/common/portable.c
Normal file
14
src/common/portable.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <io.h>
|
||||
|
||||
int
|
||||
portable_mode ()
|
||||
{
|
||||
if ((_access( "portable-mode", 0 )) != -1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
1
src/common/portable.h
Normal file
1
src/common/portable.h
Normal file
@@ -0,0 +1 @@
|
||||
int portable_mode ();
|
||||
Reference in New Issue
Block a user