From 99c9ed4c62fa0c96921a6b59235a470de2edff78 Mon Sep 17 00:00:00 2001 From: gibbed Date: Wed, 7 Apr 2021 05:57:39 -0500 Subject: [PATCH] Stop Intellisense complaints about export decls. Stop Visual Studio Intellisense complaints about export declarations. --- src/xenia/cpp.hint | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/xenia/cpp.hint diff --git a/src/xenia/cpp.hint b/src/xenia/cpp.hint new file mode 100644 index 000000000..21cd9baf2 --- /dev/null +++ b/src/xenia/cpp.hint @@ -0,0 +1,16 @@ +// Hint files help the Visual Studio IDE interpret Visual C++ identifiers +// such as names of functions and macros. +// For more information see https://go.microsoft.com/fwlink/?linkid=865984 + +#define DECLARE_XAM_EXPORT_(name, category, tags) +#define DECLARE_XAM_EXPORT1(name, category, tag) +#define DECLARE_XAM_EXPORT2(name, category, tag1, tag2) + +#define DECLARE_XBDM_EXPORT_(name, category, tags) +#define DECLARE_XBDM_EXPORT1(name, category, tag) + +#define DECLARE_XBOXKRNL_EXPORT_(name, category, tags) +#define DECLARE_XBOXKRNL_EXPORT1(name, category, tag) +#define DECLARE_XBOXKRNL_EXPORT2(name, category, tag1, tag2) +#define DECLARE_XBOXKRNL_EXPORT3(name, category, tag1, tag2, tag3) +#define DECLARE_XBOXKRNL_EXPORT4(name, category, tag1, tag2, tag3, tag4)