blob: 95e685c8cef06fc33fbe72c5e71b39d0febf48d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "InputCommon/ControllerInterface/Device.h"
namespace ciface
{
namespace OSX
{
void Init(std::vector<Core::Device*>& devices, void *window);
void DeInit();
void DeviceElementDebugPrint(const void *, void *);
}
}
|