3e07748796935eb7c03ab330e0274592b957f320
[platform/upstream/glib.git] / gio / win32 / gwin32directorymonitor.h
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  *
18  * Author: Vlad Grecescu <b100dian@gmail.com>
19  * 
20  */
21 #ifndef __G_WIN32_DIRECTORY_MONITOR_H__
22 #define __G_WIN32_DIRECTORY_MONITOR_H__
23
24 #include <glib.h>
25 #include <glib-object.h>
26 #include <gio/gio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include "gio/glocaldirectorymonitor.h"
31 #include "gio/giomodule.h"
32
33 G_BEGIN_DECLS
34
35
36 #define G_TYPE_WIN32_DIRECTORY_MONITOR (g_win32_directory_monitor_get_type ())
37 #define G_WIN32_DIRECTORY_MONITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_WIN32_DIRECTORY_MONITOR, GWin32DirectoryMonitor))
38 #define G_WIN32_DIRECTORY_MONITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_TYPE_WIN32_DIRECTORY_MONITOR, GWin32DirectoryMonitorClass))
39 #define G_IS_WIN32_DIRECTORY_MONITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_WIN32_DIRECTORY_MONITOR))
40 #define G_IS_WIN32_DIRECTORY_MONITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_TYPE_WIN32_DIRECTORY_MONITOR))
41 #define G_WIN32_DIRECTORY_MONITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), G_TYPE_WIN32_DIRECTORY_MONITOR, GWin32DirectoryMonitorClass))
42
43 typedef struct _GWin32DirectoryMonitor GWin32DirectoryMonitor;
44 typedef struct _GWin32DirectoryMonitorClass GWin32DirectoryMonitorClass;
45 typedef struct _GWin32DirectoryMonitorPrivate GWin32DirectoryMonitorPrivate;
46
47 struct _GWin32DirectoryMonitor {
48   GLocalDirectoryMonitor parent_instance;
49   GWin32DirectoryMonitorPrivate * priv;
50 };
51 struct _GWin32DirectoryMonitorClass {
52   GLocalDirectoryMonitorClass parent_class;
53 };
54
55 GType g_win32_directory_monitor_get_type (void);
56 void g_win32_directory_monitor_register (GIOModule *module);
57
58 G_END_DECLS
59
60 #endif /* __G_WIN32_DIRECTORY_MONITOR_H__ */