summaryrefslogtreecommitdiff
path: root/src/debug/ee/i386/debuggerregdisplayhelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/ee/i386/debuggerregdisplayhelper.cpp')
-rw-r--r--src/debug/ee/i386/debuggerregdisplayhelper.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/debug/ee/i386/debuggerregdisplayhelper.cpp b/src/debug/ee/i386/debuggerregdisplayhelper.cpp
new file mode 100644
index 0000000000..576fdeb592
--- /dev/null
+++ b/src/debug/ee/i386/debuggerregdisplayhelper.cpp
@@ -0,0 +1,18 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+/* ------------------------------------------------------------------------- *
+ * DebuggerRegDisplayHelper.cpp -- implementation of the platform-dependent
+//
+
+ * methods for transferring information between
+ * REGDISPLAY and DebuggerREGDISPLAY
+ * ------------------------------------------------------------------------- */
+
+#include "stdafx.h"
+
+
+void CopyREGDISPLAY(REGDISPLAY* pDst, REGDISPLAY* pSrc)
+{
+ *pDst = *pSrc;
+}