Changes between Version 6 and Version 7 of Debugging With Visual Studio
- Timestamp:
- Feb 27, 2011, 11:00:43 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Debugging With Visual Studio
v6 v7 12 12 When debugging code that uses CF types, you can invoke the [http://developer.apple.com/mac/library/documentation/CoreFoundation/Reference/CFTypeRef/Reference/reference.html#//apple_ref/c/func/CFShow CFShow] function in the Immediate window (`Debug > Windows > Immediate` or `Ctrl+Alt+I`) to print a debug description of a CF object to the Output window like so: 13 13 {{{ 14 {,,CoreFoundation .dll}CFShow((void*)0x12345678)14 {,,CoreFoundation}CFShow((void*)0x12345678) 15 15 }}} 16 16 … … 29 29 30 30 {{{ 31 {,,WebKit .dll}(WebKit::MutableDictionary*)0x1234567831 {,,WebKit}(WebKit::MutableDictionary*)0x12345678 32 32 }}} 33 33