145685b099
-Make the contents of config.h.win32.in more like config.h.in -Define CLUTTER_INPUT_WIN32 accordingly (no GDK3 defines yet, until GDK3 on Windows is more stable)
18 lines
353 B
Plaintext
18 lines
353 B
Plaintext
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
#endif
|
|
|
|
#ifndef __CLUTTER_CONFIG_H__
|
|
#define __CLUTTER_CONFIG_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define CLUTTER_WINDOWING_WIN32 "win32"
|
|
#define CLUTTER_INPUT_WIN32 "win32"
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_CONFIG_H__ */
|