summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMartin Peterson <mkp@src.gnome.org>1999-08-11 22:53:26 +0000
committerMartin Peterson <mkp@src.gnome.org>1999-08-11 22:53:26 +0000
commita7171ba7426060b53c3a75948edbae7829c4f084 (patch)
tree13cfe6d4af5f593959641ff909301645e52cf823 /gui
parent05e9b4862f94181d3ceb456e7ec6dc77c0b1c23f (diff)
downloadgdm-a7171ba7426060b53c3a75948edbae7829c4f084.tar.gz
Removed spec file. This one confuses people as it isn't Red Hat ready...
Removed spec file. This one confuses people as it isn't Red Hat ready... Added missing gdmlogin.h
Diffstat (limited to 'gui')
-rw-r--r--gui/gdmlogin.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/gui/gdmlogin.h b/gui/gdmlogin.h
new file mode 100644
index 00000000..b36c67fa
--- /dev/null
+++ b/gui/gdmlogin.h
@@ -0,0 +1,35 @@
+/* GDM - The Gnome Display Manager
+ * Copyright (C) 1999 Martin Kasper Petersen <mkp@mkp.net>
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __GDM_LOGIN_H__
+#define __GDM_LOGIN_H__
+
+#include <gnome.h>
+
+typedef struct _GdmLoginUser GdmLoginUser;
+
+struct _GdmLoginUser {
+ uid_t uid;
+ gchar *login;
+ gchar *homedir;
+ GdkImlibImage *picture;
+};
+
+#endif /* __GDM_LOGIN_H__ */
+
+/* EOF */