blob: 1d0b6236ae71833cc4fc6ccb0953756c6aa279d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* Ivy, C interface
*
* Copyright (C) 1997-2000
* Centre d'Études de la Navigation Aérienne
*
* Main loop handling around select
*
* Authors: François-Régis Colin <fcolin@cena.fr>
* Stéphane Chatty <chatty@cena.fr>
*
* $Id$
*
* Please refer to file version.h for the
* copyright notice regarding this software
*
*/
#ifndef IVYLOOP_H
#define IVYLOOP_H
#ifdef __cplusplus
extern "C" {
#endif
#include "ivychannel.h"
extern void IvyMainLoop(void(*hook)(void) );
extern void IvyIdle();
#ifdef __cplusplus
}
#endif
#endif
|