mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
21 lines
289 B
C
21 lines
289 B
C
#include "log.h"
|
|
#include "windows.h"
|
|
#include "profanity.h"
|
|
|
|
int main(void)
|
|
{
|
|
int exit_status;
|
|
|
|
log_init();
|
|
gui_init();
|
|
|
|
do {
|
|
exit_status = profanity_start();
|
|
} while (exit_status == LOGIN_FAIL);
|
|
|
|
gui_close();
|
|
log_close();
|
|
|
|
return 0;
|
|
}
|