Skip to content

Commit

Permalink
winmd2objc: fix the include path for InteropBase
Browse files Browse the repository at this point in the history
Refs #2904
  • Loading branch information
DHowett committed Dec 3, 2018
1 parent 2365210 commit 77306d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/winmd2objc/lib/CodeGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,7 @@ struct GeneratorVisitor : public Visitor {
fwprintf(outHeader, L"#pragma comment(lib, \"%s\")\n", libFileName.c_str());
fwprintf(outHeader, L"#endif\n");
fwprintf(outHeader, L"#endif\n");
fwprintf(outHeader, L"#include <UWP/interopBase.h>\n\n");
fwprintf(outHeader, L"#include <UWP/InteropBase.h>\n\n");
fwprintf(outImpl, L"// %s\n// Generated from winmd2objc\n\n", implFileName.c_str());
fwprintf(outImpl, L"#include <COMIncludes.h>\n");
// Unfortunately Windows.h has a macro for GetCurrentTime and WinRT has a function in WindowsUIXamlMediaAnimation called that..
Expand Down

0 comments on commit 77306d5

Please sign in to comment.