~ci-train-bot/lightdm/lightdm-ubuntu-zesty-1679

777 by Robert Ancell
Introduce a seat object
1
/*
2
 * Copyright (C) 2010-2011 Robert Ancell.
3
 * Author: Robert Ancell <robert.ancell@canonical.com>
2065 by Robert Ancell
Remove trailing whitespace
4
 *
777 by Robert Ancell
Introduce a seat object
5
 * This program is free software: you can redistribute it and/or modify it under
6
 * the terms of the GNU General Public License as published by the Free Software
7
 * Foundation, either version 3 of the License, or (at your option) any later
8
 * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9
 * license.
10
 */
11
1649.1.1 by Robert Ancell
Use C standard compliant names for header guards
12
#ifndef SEAT_XDMCP_SESSION_H_
13
#define SEAT_XDMCP_SESSION_H_
777 by Robert Ancell
Introduce a seat object
14
15
#include "seat.h"
16
#include "xdmcp-session.h"
17
18
G_BEGIN_DECLS
19
20
#define SEAT_XDMCP_SESSION_TYPE (seat_xdmcp_session_get_type())
21
#define SEAT_XDMCP_SESSION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SEAT_XDMCP_SESSION_TYPE, SeatXDMCPSession))
22
23
typedef struct SeatXDMCPSessionPrivate SeatXDMCPSessionPrivate;
24
25
typedef struct
26
{
27
    Seat                     parent_instance;
28
    SeatXDMCPSessionPrivate *priv;
29
} SeatXDMCPSession;
30
31
typedef struct
32
{
33
    SeatClass parent_class;
34
} SeatXDMCPSessionClass;
35
36
GType seat_xdmcp_session_get_type (void);
37
896 by Robert Ancell
Fix configuration
38
SeatXDMCPSession *seat_xdmcp_session_new (XDMCPSession *session);
777 by Robert Ancell
Introduce a seat object
39
40
G_END_DECLS
41
1649.1.1 by Robert Ancell
Use C standard compliant names for header guards
42
#endif /* SEAT_XDMCP_SESSION_H_ */