blob: 21361e98298115baf53cb3ccfeaa0a6dc1e05017 (
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
|
#ifndef __INKSCAPE_GDL_WIN32_H__
#define __INKSCAPE_GDL_WIN32_H__
/*
* Windows stuff
*
* Author:
* Albin Sunnanbo
*
* This code is in public domain
*/
#define WIN32_MAJORVERSION_VISTA 0x0006
#include <config.h>
#include <windows.h>
#include <gdk/gdk.h>
#ifndef WIN32
#error "This file is only usable for Windows"
#endif
/* Platform detection */
gboolean is_os_vista();
#endif /* __INKSCAPE_GDL_WIN32_H__ */
|