summaryrefslogtreecommitdiffhomepage
path: root/src/console/ptyc_console_poller.c
blob: 60e3d8baa6a2e0eb945989718f1677638e6a090c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*********************************************************/
/*  ptycon: a pty-console bridge                         */
/*  Copyright (C) 2016  Z. Gilboa                        */
/*  Released under GPLv2 and GPLv3; see COPYING.PTYCON.  */
/*********************************************************/

#include <psxtypes/psxtypes.h>
#include <ntcon/ntcon.h>
#include <ntapi/ntapi.h>
#include <gdi/gdi.h>

#include <ptycon/ptycon.h>
#include "ptycon_driver_impl.h"

int ptyc_console_poller(struct ptyc_driver_ctx_impl * ictx)
{
	(void)ictx;
	return ntapi->tt_wait_for_dummy_event();
}