blob: d08419d218453622faed0e471e4c850f86792143 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef OPENMPT_WINE_H
#define OPENMPT_WINE_H
#include "NativeConfig.h"
#include "NativeUtils.h"
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
OPENMPT_WINESUPPORT_API uintptr_t OPENMPT_WINESUPPORT_CALL OpenMPT_Init(void);
OPENMPT_WINESUPPORT_API uintptr_t OPENMPT_WINESUPPORT_CALL OpenMPT_Fini(void);
#ifdef __cplusplus
}
#endif
#endif // OPENMPT_WINE_H
|