]> git.ozlabs.org Git - petitboot/blob - discover/user-event.h
po: Update translations
[petitboot] / discover / user-event.h
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #if !defined(_PB_DISCOVER_USER_EVENT_H)
20 #define _PB_DISCOVER_USER_EVENT_H
21
22 #include <stdbool.h>
23
24 #include "device-handler.h"
25
26 #define PBOOT_USER_EVENT_SOCKET "/tmp/petitboot.ev"
27 #define PBOOT_USER_EVENT_SIZE (1 * 1024)
28
29 struct user_event;
30 struct waitset;
31
32 struct pb_url *user_event_parse_conf_url(struct discover_context *ctx,
33                 struct event *event, bool *complete_url);
34 char **user_event_parse_conf_filenames(
35                 struct discover_context *ctx, struct event *event);
36 struct user_event *user_event_init(struct device_handler *handler,
37                 struct waitset *waitset);
38
39 #endif