"Andrew Talbot" <[EMAIL PROTECTED]> wrote:
-typedef void *MSIITERHANDLE; +typedef void *MSIITERHANDLE; +typedef const void *MSICITERHANDLE;
Personally I don't like MSICITERHANDLE typedef at all. It' not obvious that 'C' in the name marks constness of the object. Using 'const' explicitly such as 'const MSIITERHANDLE *handle' is much more clear and readable IMO. -- Dmitry.
