From: Richard Jones Date: Tue, 19 Jan 2010 10:06:00 +0000 (+0000) Subject: hivex: Add value_any callback to the visitor. X-Git-Tag: 1.1.0~53 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=a5ab005d8a0786540196efab43edf5c99a5287da;hp=a5ab005d8a0786540196efab43edf5c99a5287da;p=hivex.git hivex: Add value_any callback to the visitor. The visitor currently contains lots of value_* callbacks, such as value_string which is called back when the value has type string. This is fine but it makes it complicated to deal with the case where you just want to see 'a value', and don't care about its type. The value_any callback allows visitors to see values generically. ---