-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvislak.h
57 lines (49 loc) · 1.04 KB
/
vislak.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Public domain */
#ifndef _VISLAK_H_
#define _VISLAK_H_
#include <agar/core.h>
#include <agar/core/types.h>
#include <agar/gui.h>
#ifdef _VS_INTERNAL
# ifndef MIN
# define MIN(a,b) (((a)<(b))?(a):(b))
# endif
# ifndef MAX
# define MAX(a,b) (((a)>(b))?(a):(b))
# endif
# include "config/enable_nls.h"
# ifdef ENABLE_NLS
# include <libintl.h>
# define _(String) gettext(String)
# define gettext_noop(String) (String)
# define N_(String) gettext_noop(String)
# else
# undef _
# undef N_
# define _(s) (s)
# define N_(s) (s)
# endif
# ifdef WIN32
# define PATHSEPC '\\'
# define PATHSEP "\\"
# else
# define PATHSEPC '/'
# define PATHSEP "/"
# endif
#endif /* _VS_INTERNAL */
#if !defined(__BEGIN_DECLS) || !defined(__END_DECLS)
# define _ES_DEFINED_CDECLS
# if defined(__cplusplus)
# define __BEGIN_DECLS extern "C" {
# define __END_DECLS }
# else
# define __BEGIN_DECLS
# define __END_DECLS
# endif
#endif
#include "vs_clip.h"
#include "vs_player.h"
#include "vs_project.h"
#include "vs_view.h"
#include "vs_gui.h"
#endif /* _VISLAK_H_ */