Browse Source
Merge pull request #12169 from liamwhite/its-time-to-stop
time: undef GetCurrentTime for Windows
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
src/core/hle/service/time/clock_types.h
|
|
|
@ -11,6 +11,11 @@ |
|
|
|
#include "core/hle/service/time/errors.h" |
|
|
|
#include "core/hle/service/time/time_zone_types.h" |
|
|
|
|
|
|
|
// Defined by WinBase.h on Windows |
|
|
|
#ifdef GetCurrentTime |
|
|
|
#undef GetCurrentTime |
|
|
|
#endif |
|
|
|
|
|
|
|
namespace Service::Time::Clock { |
|
|
|
|
|
|
|
enum class TimeType : u8 { |
|
|
|
|