aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs
new file mode 100644
index 000000000..7855c80ae
--- /dev/null
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/DX2D/NativeMethods.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.InteropServices;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace RealTimeGraphEx.DX2D
+{
+ /// <summary>
+ /// Defines the native methods
+ /// </summary>
+ public static class NativeMethods
+ {
+ [DllImport("user32.dll", SetLastError = false)]
+ public static extern IntPtr GetDesktopWindow();
+ }
+}