diff --git a/ExampleExtension.sln b/ExampleExtension.sln
new file mode 100644
index 0000000..9ccb724
--- /dev/null
+++ b/ExampleExtension.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.27703.2018
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleExtension", "ExampleExtension\ExampleExtension.vcxproj", "{577FDFFF-CBC8-4889-BC1C-27267DF3367A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Debug|x64.ActiveCfg = Debug|x64
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Debug|x64.Build.0 = Debug|x64
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Debug|x86.ActiveCfg = Debug|Win32
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Debug|x86.Build.0 = Debug|Win32
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Release|x64.ActiveCfg = Release|x64
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Release|x64.Build.0 = Release|x64
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Release|x86.ActiveCfg = Release|Win32
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {17C9AD28-4082-4BD4-BF76-A49D0F6D57D5}
+ EndGlobalSection
+EndGlobal
diff --git a/ExampleExtension/ExampleExtension.cpp b/ExampleExtension/ExampleExtension.cpp
new file mode 100644
index 0000000..f930cd9
Binary files /dev/null and b/ExampleExtension/ExampleExtension.cpp differ
diff --git a/ExampleExtension/ExampleExtension.vcxproj b/ExampleExtension/ExampleExtension.vcxproj
new file mode 100644
index 0000000..a94fef8
--- /dev/null
+++ b/ExampleExtension/ExampleExtension.vcxproj
@@ -0,0 +1,166 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 15.0
+ {577FDFFF-CBC8-4889-BC1C-27267DF3367A}
+ Win32Proj
+ ExampleExtension
+ 10.0.17134.0
+
+
+
+ DynamicLibrary
+ true
+ v141
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v141
+ true
+ Unicode
+
+
+ DynamicLibrary
+ true
+ v141
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v141
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+ true
+
+
+ false
+
+
+ false
+
+
+
+ Use
+ Level3
+ Disabled
+ true
+ WIN32;_DEBUG;EXAMPLEEXTENSION_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
+ true
+
+
+ Windows
+ true
+
+
+
+
+ Use
+ Level3
+ Disabled
+ true
+ _DEBUG;EXAMPLEEXTENSION_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
+ true
+
+
+ Windows
+ true
+
+
+
+
+ Use
+ Level3
+ MaxSpeed
+ true
+ true
+ true
+ WIN32;NDEBUG;EXAMPLEEXTENSION_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
+ true
+
+
+ Windows
+ true
+ true
+ true
+
+
+
+
+ Use
+ Level3
+ MaxSpeed
+ true
+ true
+ true
+ NDEBUG;EXAMPLEEXTENSION_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
+ true
+
+
+ Windows
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+ Create
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ExampleExtension/ExampleExtension.vcxproj.filters b/ExampleExtension/ExampleExtension.vcxproj.filters
new file mode 100644
index 0000000..10f0d58
--- /dev/null
+++ b/ExampleExtension/ExampleExtension.vcxproj.filters
@@ -0,0 +1,36 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hh;hpp;hxx;hm;inl;inc;ipp;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
\ No newline at end of file
diff --git a/ExampleExtension/dllmain.cpp b/ExampleExtension/dllmain.cpp
new file mode 100644
index 0000000..1637303
Binary files /dev/null and b/ExampleExtension/dllmain.cpp differ
diff --git a/ExampleExtension/stdafx.cpp b/ExampleExtension/stdafx.cpp
new file mode 100644
index 0000000..6cd1c45
Binary files /dev/null and b/ExampleExtension/stdafx.cpp differ
diff --git a/ExampleExtension/stdafx.h b/ExampleExtension/stdafx.h
new file mode 100644
index 0000000..b937b12
Binary files /dev/null and b/ExampleExtension/stdafx.h differ
diff --git a/ExampleExtension/targetver.h b/ExampleExtension/targetver.h
new file mode 100644
index 0000000..567cd34
Binary files /dev/null and b/ExampleExtension/targetver.h differ