Remove some usages of windows.h (#1370)

For HAL and wpilib, we don't need them, especially where they were being used.
This commit is contained in:
Thad House
2018-10-28 22:33:55 -07:00
committed by Peter Johnson
parent 9f6544fa87
commit 9174f23f36
3 changed files with 12 additions and 12 deletions

View File

@@ -7,13 +7,7 @@
#pragma once
#ifdef _WIN32
#include <windows.h>
#define NativeThreadHandle const HANDLE*
#else
#include <pthread.h>
#define NativeThreadHandle const pthread_t*
#endif
#define NativeThreadHandle const void*
#include "hal/Types.h"