summaryrefslogtreecommitdiffstats
path: root/autoexp.expand
diff options
context:
space:
mode:
authorsagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2012-02-12 16:05:27 (GMT)
committersagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8>2012-02-12 16:05:27 (GMT)
commit96e6e9fa7388b010f55cf8d122ef03a2a8ab87e4 (patch)
tree43bfb85629d0fa32de2d88d04997642a0828c128 /autoexp.expand
parent805aac230223f45acc7db218eb64589a4adb390e (diff)
downloadcv2pdb-96e6e9fa7388b010f55cf8d122ef03a2a8ab87e4.zip
cv2pdb-96e6e9fa7388b010f55cf8d122ef03a2a8ab87e4.tar.gz
cv2pdb-96e6e9fa7388b010f55cf8d122ef03a2a8ab87e4.tar.bz2
* disabled named enumerator for D basic types to avoid debugger troubles displaying arrays
* added command line switch -e to enable using named enumerator for D basic types * added DWARF support * added x64 support
Diffstat (limited to 'autoexp.expand')
-rw-r--r--autoexp.expand21
1 files changed, 18 insertions, 3 deletions
diff --git a/autoexp.expand b/autoexp.expand
index 25cc23b..cdaf324 100644
--- a/autoexp.expand
+++ b/autoexp.expand
@@ -9,9 +9,24 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
object_viewhelper=$ADDIN(dviewhelper.dll,_DObjectView@28)
-string_viewhelper=$ADDIN(dviewhelper.dll,_DStringView@28)
-wstring_viewhelper=$ADDIN(dviewhelper.dll,_DWStringView@28)
-dstring_viewhelper=$ADDIN(dviewhelper.dll,_DDStringView@28)
+string=$ADDIN(dviewhelper.dll,_DStringView@28)
+wstring=$ADDIN(dviewhelper.dll,_DWStringView@28)
+dstring=$ADDIN(dviewhelper.dll,_DDStringView@28)
+char[]=$ADDIN(dviewhelper.dll,_DStringView@28)
+wchar[]=$ADDIN(dviewhelper.dll,_DWStringView@28)
+dchar[]=$ADDIN(dviewhelper.dll,_DDStringView@28)
+const(char)[]=$ADDIN(dviewhelper.dll,_DStringView@28)
+const(wchar)[]=$ADDIN(dviewhelper.dll,_DWStringView@28)
+const(dchar)[]=$ADDIN(dviewhelper.dll,_DDStringView@28)
+const(char[])=$ADDIN(dviewhelper.dll,_DStringView@28)
+const(wchar[])=$ADDIN(dviewhelper.dll,_DWStringView@28)
+const(dchar[])=$ADDIN(dviewhelper.dll,_DDStringView@28)
+immutable(char)[]=$ADDIN(dviewhelper.dll,_DStringView@28)
+immutable(wchar)[]=$ADDIN(dviewhelper.dll,_DWStringView@28)
+immutable(dchar)[]=$ADDIN(dviewhelper.dll,_DDStringView@28)
+immutable(char[])=$ADDIN(dviewhelper.dll,_DStringView@28)
+immutable(wchar[])=$ADDIN(dviewhelper.dll,_DWStringView@28)
+immutable(dchar[])=$ADDIN(dviewhelper.dll,_DDStringView@28)
;; eo section AutoExpand for D variables ;;;;;;;;;;;;;;;;;;;;;;
;; eo added for cv2pdb - keep this line for uninstaller