chore(error): add missing include to error

This commit is contained in:
fallenoak 2020-11-30 23:54:53 -06:00
parent c04685efa8
commit e838167bbd
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D

View file

@ -3,6 +3,10 @@
#include <cstdint>
#if defined(WHOA_PLATFORM_WIN)
#include <winerror.h>
#endif
#if defined(WHOA_PLATFORM_MAC) || defined(WHOA_PLATFORM_LINUX)
#define ERROR_INVALID_PARAMETER 0x57
#endif