blob: c2104774b72c1124d48233e50b137238fec86e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2010 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
namespace ciface
{
namespace OSX
{
void Init(void* window);
void DeInit();
void DeviceElementDebugPrint(const void*, void*);
}
}
|