mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
Merge pull request #13519 from tygyh/Replace-definitions-with-constant-expressions
Replace definitions with constant expressions - Core/HW/EXI/BBA/TAP_Win32
This commit is contained in:
commit
8bfde300f4
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <winioctl.h>
|
#include <winioctl.h>
|
||||||
#define TAP_WIN32_MIN_MAJOR 9
|
constexpr int TAP_WIN32_MIN_MAJOR = 9;
|
||||||
#define TAP_WIN32_MIN_MINOR 0
|
constexpr int TAP_WIN32_MIN_MINOR = 0;
|
||||||
|
|
||||||
//=============
|
//=============
|
||||||
// TAP IOCTLs
|
// TAP IOCTLs
|
||||||
|
|
Loading…
Add table
Reference in a new issue