/**
 * Author......: See docs/credits.txt
 * License.....: MIT
 */

#ifndef _TERMINAL_H
#define _TERMINAL_H

#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

#if defined (_POSIX)
#include <termios.h>
#if defined (__APPLE__)
#include <sys/ioctl.h>
#endif // __APPLE__
#endif // _POSIX

#if defined (_WIN)
#include <windows.h>
#endif // _WIN

void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag);
void goodbye_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const time_t proc_stop);

int setup_console (void);

void send_prompt (void);
void clear_prompt (void);

void *thread_keypress (void *p);

#if defined (_WIN)
void SetConsoleWindowSize (const int x);
#endif

int tty_break(void);
int tty_getchar(void);
int tty_fix(void);

void opencl_info                      (hashcat_ctx_t *hashcat_ctx);
void opencl_info_compact              (hashcat_ctx_t *hashcat_ctx);

void status_display_machine_readable  (hashcat_ctx_t *hashcat_ctx);
void status_display                   (hashcat_ctx_t *hashcat_ctx);
void status_benchmark_automate        (hashcat_ctx_t *hashcat_ctx);
void status_benchmark                 (hashcat_ctx_t *hashcat_ctx);

#endif // _TERMINAL_H