Blame gdk/win32/gdkapplaunchcontext-win32.c

Packit Service fb6fa5
/* gdkapplaunchcontext-win32.c - Gtk+ implementation for GAppLaunchContext
Packit Service fb6fa5
Packit Service fb6fa5
   Copyright (C) 2007 Red Hat, Inc.
Packit Service fb6fa5
Packit Service fb6fa5
   The Gnome Library is free software; you can redistribute it and/or
Packit Service fb6fa5
   modify it under the terms of the GNU Library General Public License as
Packit Service fb6fa5
   published by the Free Software Foundation; either version 2 of the
Packit Service fb6fa5
   License, or (at your option) any later version.
Packit Service fb6fa5
Packit Service fb6fa5
   The Gnome Library is distributed in the hope that it will be useful,
Packit Service fb6fa5
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fb6fa5
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service fb6fa5
   Library General Public License for more details.
Packit Service fb6fa5
Packit Service fb6fa5
   You should have received a copy of the GNU Library General Public
Packit Service fb6fa5
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
Packit Service fb6fa5
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service fb6fa5
   Boston, MA 02111-1307, USA.
Packit Service fb6fa5
Packit Service fb6fa5
   Author: Matthias Clasen <mclasen@redhat.com>
Packit Service fb6fa5
*/
Packit Service fb6fa5
Packit Service fb6fa5
#include "config.h"
Packit Service fb6fa5
Packit Service fb6fa5
#include "gdkapplaunchcontext.h"
Packit Service fb6fa5
Packit Service fb6fa5
Packit Service fb6fa5
char *
Packit Service fb6fa5
_gdk_windowing_get_startup_notify_id (GAppLaunchContext *context,
Packit Service fb6fa5
                                      GAppInfo          *info,
Packit Service fb6fa5
                                      GList             *files)
Packit Service fb6fa5
{
Packit Service fb6fa5
	return NULL;
Packit Service fb6fa5
}
Packit Service fb6fa5
Packit Service fb6fa5
void
Packit Service fb6fa5
_gdk_windowing_launch_failed (GAppLaunchContext *context,
Packit Service fb6fa5
                              const char        *startup_notify_id)
Packit Service fb6fa5
{
Packit Service fb6fa5
}
Packit Service fb6fa5
Packit Service fb6fa5