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