1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-05 08:26:45 +02:00

put file senders in one thread due to weird issues & a few fixes

This commit is contained in:
Jfreegman
2014-06-28 12:14:43 -04:00
parent 134e5873a9
commit 33e98fd720
6 changed files with 118 additions and 128 deletions

View File

@ -67,6 +67,11 @@ struct _Winthread {
pthread_mutex_t lock;
};
struct _FSenderThread {
pthread_t tid;
pthread_mutex_t lock;
};
typedef struct ToxWindow ToxWindow;
typedef struct StatusBar StatusBar;
typedef struct PromptBuf PromptBuf;