-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlibudev-hwdb.cpp
37 lines (29 loc) · 876 Bytes
/
libudev-hwdb.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "macro.h"
#include "logging.h"
#include "libudev.h"
#include "libudev1.h"
using namespace libudev_stub;
extern "C" {
struct udev_hwdb
{
int _reserved;
};
_public_ struct udev_hwdb* udev_hwdb_ref(struct udev_hwdb* hwdb) {
LOG() << "udev_hwdb_ref()";
return NULL;
}
_public_ struct udev_hwdb* udev_hwdb_unref(struct udev_hwdb* hwdb) {
LOG() << "udev_hwdb_unref()";
return NULL;
}
_public_ struct udev_list_entry* udev_hwdb_get_properties_list_entry(struct udev_hwdb* hwdb,
const char* modalias,
unsigned int flags) {
LOG() << "udev_hwdb_get_properties_list_entry()";
return NULL;
}
_public_ struct udev_hwdb* udev_hwdb_new(struct udev* udev) {
LOG() << "udev_hwdb_new()";
return NULL;
}
} // extern "C"