blob: 5d03a690b7cd3af04ff017517c49d54849283808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/***************************************************************************
*
* sysevent.h : definitions for Solaris sysevents
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#pragma ident "%Z%%M% %I% %E% SMI"
#ifndef SYSEVENT_H
#define SYSEVENT_H
#include <glib.h>
gboolean sysevent_init(void);
void sysevent_fini(void);
#endif /* SYSEVENT_H */
|