2017-11-10 17:56:13 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-17 20:39:24 +00:00
|
|
|
namespace ciface::Win32
|
2017-11-10 17:56:13 +00:00
|
|
|
{
|
2017-11-10 20:30:37 +00:00
|
|
|
void Init(void* hwnd);
|
2017-11-10 17:56:13 +00:00
|
|
|
void PopulateDevices(void* hwnd);
|
|
|
|
void DeInit();
|
2019-06-17 20:39:24 +00:00
|
|
|
} // namespace ciface::Win32
|