blob: d12e625d1eedf954cec71b5b9ed3065c3de1e6d9 (
plain) (
blame)
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
38
39
40
41
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <dlfcn.h>
#include <stdarg.h>
#include "wrappedlibs.h"
#include "wrapper.h"
#include "bridge.h"
#include "librarian/library_private.h"
#include "x64emu.h"
#include "debug.h"
#include "myalign.h"
#include "callback.h"
#include "emu/x64emu_private.h"
const char* udev0Name = "libudev.so.0";
#define LIBNAME udev0
#define ADDED_FUNCTIONS() \
//#include "generated/wrappedudev0types.h"
//#include "wrappercallback.h"
#define SUPER() \
GO(0) \
GO(1) \
GO(2) \
GO(3) \
GO(4)
#undef SUPER
#define ALTMY my0_
#define NEEDED_LIBS "libudev.so.1"
#include "wrappedlib_init.h"
|