blob: 13ba32771184b06c7c0599821c9d79d97303b507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/***************************************************************************
*
* osspec_netbsd.h : definitions for NetBSD HAL backend
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#ifndef OSSPEC_NETBSD_H
#define OSSPEC_NETBSD_H
#include <glib.h>
void hotplug_queue_now_empty (void);
HalDevice *hal_util_find_closest_ancestor (const gchar *devfs_path, gchar **ancestor_devfs_path, gchar **hotplug_devfs_path);
char *dsk_to_rdsk(char *);
#endif /* OSSPEC_NETBSD_H */
|