1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-30 08:36:44 +02:00

put chatlogs in their own directory

This commit is contained in:
Jfreegman
2014-08-02 21:01:40 -04:00
parent 3cbe61e111
commit c14f2a3fcd
4 changed files with 29 additions and 13 deletions

View File

@ -28,6 +28,7 @@
#endif
#define CONFIGDIR "/tox/"
#define LOGDIR "/tox/chatlogs/"
#ifndef S_ISDIR
#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
@ -35,6 +36,6 @@
char *get_user_config_dir(void);
void get_home_dir(char *home, int size);
int create_user_config_dir(char *path);
int create_user_config_dirs(char *path);
#endif /* #define _configdir_h */