blob: 6ae66db49f2d22075333f5ca087ce9506c1bc5f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/***************************************************************************
*
* sysevent.h : definitions for Solaris sysevents
*
* Copyright 2011 Andrew Stormont <andyjstormont@gmail.com>
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#ifndef SYSEVENT_H
#define SYSEVENT_H
#include <glib.h>
gboolean sysevent_init(void);
void sysevent_fini(void);
#endif /* SYSEVENT_H */
|