Skip to content

Commit

Permalink
Add warning when compiling UWP apps
Browse files Browse the repository at this point in the history
(which is not supported for now...)
  • Loading branch information
kernelbin committed Feb 23, 2024
1 parent 886ca9b commit 7824943
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ruapu.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ int ruapu_supports(const char* isa);
#include <windows.h>

#if WINAPI_FAMILY == WINAPI_FAMILY_APP
// uwp does not support veh :(
#warning ruapu does not support UWP yet.
static int ruapu_detect_isa(const void* some_inst)
{
// uwp does not support seh :(
(void)some_inst;
return 0;
}
Expand Down

0 comments on commit 7824943

Please sign in to comment.