summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-03-07 15:36:47 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2014-03-07 15:36:47 -0500
commit7c1f1a07463b99bb7397313e812abed7d5a98e82 (patch)
tree230dcf721ab18c1dc09d46293619cf93cf168519
parentf061d87826f15e20b23af60fb10f77f03e2caa76 (diff)
downloadgdm-7c1f1a07463b99bb7397313e812abed7d5a98e82.tar.gz
daemon: Remove gdm-session-private.h
This file has been flat out unused for quite a while.
-rw-r--r--daemon/gdm-session-private.h100
1 files changed, 0 insertions, 100 deletions
diff --git a/daemon/gdm-session-private.h b/daemon/gdm-session-private.h
deleted file mode 100644
index ef7ca79e..00000000
--- a/daemon/gdm-session-private.h
+++ /dev/null
@@ -1,100 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
- *
- * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-
-#ifndef __GDM_SESSION_PRIVATE_H
-#define __GDM_SESSION_PRIVATE_H
-
-#include <glib-object.h>
-#include "gdm-session.h"
-
-G_BEGIN_DECLS
-
-/* state changes */
-void _gdm_session_conversation_started (GdmSession *session,
- const char *service_name);
-void _gdm_session_conversation_stopped (GdmSession *session,
- const char *service_name);
-void _gdm_session_service_unavailable (GdmSession *session,
- const char *service_name);
-void _gdm_session_setup_complete (GdmSession *session,
- const char *service_name);
-void _gdm_session_setup_failed (GdmSession *session,
- const char *service_name,
- const char *message);
-void _gdm_session_reset_complete (GdmSession *session);
-void _gdm_session_reset_failed (GdmSession *session,
- const char *message);
-void _gdm_session_authenticated (GdmSession *session,
- const char *service_name);
-void _gdm_session_authentication_failed (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_authorized (GdmSession *session,
- const char *service_name);
-void _gdm_session_authorization_failed (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_accredited (GdmSession *session,
- const char *service_name);
-void _gdm_session_accreditation_failed (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_session_opened (GdmSession *session,
- const char *service_name);
-void _gdm_session_session_open_failed (GdmSession *session,
- const char *service_name,
- const char *message);
-void _gdm_session_session_started (GdmSession *session,
- const char *service_name,
- int pid);
-void _gdm_session_session_start_failed (GdmSession *session,
- const char *service_name,
- const char *message);
-void _gdm_session_session_exited (GdmSession *session,
- int exit_code);
-void _gdm_session_session_died (GdmSession *session,
- int signal_number);
-
-/* user settings read from ~/.dmrc / system defaults */
-void _gdm_session_default_language_name_changed (GdmSession *session,
- const char *language_name);
-void _gdm_session_default_session_name_changed (GdmSession *session,
- const char *session_name);
-/* user is selected/changed internally */
-void _gdm_session_selected_user_changed (GdmSession *session,
- const char *text);
-
-/* call and response stuff */
-void _gdm_session_info_query (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_secret_info_query (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_info (GdmSession *session,
- const char *service_name,
- const char *text);
-void _gdm_session_problem (GdmSession *session,
- const char *service_name,
- const char *text);
-
-G_END_DECLS
-
-#endif /* __GDM_SESSION_PRIVATE_H */