mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
20 lines
292 B
C
20 lines
292 B
C
#include "log.h"
|
|
#include "windows.h"
|
|
#include "profanity.h"
|
|
|
|
int main(void)
|
|
{
|
|
int exit_status = LOGIN_FAIL;
|
|
log_init();
|
|
gui_init();
|
|
|
|
while (exit_status == LOGIN_FAIL) {
|
|
exit_status = profanity_start();
|
|
}
|
|
|
|
gui_close();
|
|
log_close();
|
|
|
|
return 0;
|
|
}
|