Added missing API export.

This commit is contained in:
Armin Novak 2016-08-04 13:24:53 +02:00
parent a978ccc0bb
commit 04846ca775
1 changed files with 6 additions and 4 deletions

View File

@ -21,14 +21,16 @@
#define FREERDP_UTILS_SIGNAL_H
#include <freerdp/api.h>
#include <freerdp/freerdp.h>
#ifndef _WIN32
#include <signal.h>
#include <termios.h>
extern volatile sig_atomic_t terminal_needs_reset;
extern int terminal_fildes;
extern struct termios orig_flags;
extern struct termios new_flags;
FREERDP_API extern volatile sig_atomic_t terminal_needs_reset;
FREERDP_API extern int terminal_fildes;
FREERDP_API extern struct termios orig_flags;
FREERDP_API extern struct termios new_flags;
#endif
#ifdef __cplusplus