blob: fdb47f306fb4cc352c8b623d729eff93154f7370 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* main.hpp -- provide functions for the GUI
* by pts@fazekas.hu at 2002.12.28
*/
#ifdef __GNUC__
#ifndef __clang__
#pragma interface
#endif
#endif
#ifndef MAIN_HPP
#define MAIN_HPP 1
#include "gensi.hpp"
extern void init_applier();
extern void init_loader();
extern void init_sam2p_engine(char const*argv0);
#endif
|