summaryrefslogtreecommitdiff
path: root/src/binder/inc/compatibility.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/binder/inc/compatibility.hpp')
-rw-r--r--src/binder/inc/compatibility.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/binder/inc/compatibility.hpp b/src/binder/inc/compatibility.hpp
new file mode 100644
index 0000000000..7e7000ebf1
--- /dev/null
+++ b/src/binder/inc/compatibility.hpp
@@ -0,0 +1,32 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+// ============================================================
+//
+// Compatibility.hpp
+//
+
+
+//
+// Defines the V2 Compatibility class
+//
+// ============================================================
+
+#ifndef __BINDER__COMPATIBLITY_HPP__
+#define __BINDER__COMPATIBLITY_HPP__
+
+#include "bindertypes.hpp"
+
+namespace BINDER_SPACE
+{
+ class Compatibility
+ {
+ public:
+ static HRESULT Retarget(/* in */ AssemblyName *pAssemblyName,
+ /* out */ AssemblyName **ppRetargetedAssemblyName,
+ /* out */ BOOL *pFIsRetargeted);
+ };
+};
+
+#endif