Expand gio/win32/Makefile.

2008-03-12  Tor Lillqvist  <tml@novell.com>

	* configure.in: Expand gio/win32/Makefile.

2008-03-12  Tor Lillqvist  <tml@novell.com>

	Bug 517419 - gio win32 directory monitor
	Implementation by Vlad Grecescu.
	
	* win32/Makefile.am
	* win32/gwin32directorymonitor.h
	* win32/gwin32directorymonitor.c: New files.

	* giomodule.c: Set up the GWin32DirectoryMonitor plumbing.

	* Makefile.am: Add the win32 subdirectory.


svn path=/trunk/; revision=6698
This commit is contained in:
Tor Lillqvist
2008-03-12 19:09:11 +00:00
committed by Tor Lillqvist
parent 1c6676396d
commit 367d77233b
8 changed files with 275 additions and 0 deletions

View File

@@ -290,6 +290,8 @@ extern GType _g_inotify_file_monitor_get_type (void);
extern GType _g_unix_volume_monitor_get_type (void);
extern GType _g_local_vfs_get_type (void);
extern GType g_win32_directory_monitor_get_type (void);
void
_g_io_modules_ensure_loaded (void)
{
@@ -330,6 +332,9 @@ _g_io_modules_ensure_loaded (void)
_g_inotify_directory_monitor_get_type ();
_g_inotify_file_monitor_get_type ();
#endif
#ifdef G_OS_WIN32
g_win32_directory_monitor_get_type ();
#endif
#ifdef G_OS_UNIX
_g_unix_volume_monitor_get_type ();
#endif