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