blob: acf72d76a071a01e5e70b3d1e3bb989289fdd952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
namespace ciface::Win32
{
void Init(void* hwnd);
void PopulateDevices(void* hwnd);
void DeInit();
} // namespace ciface::Win32
|