hutch,
Every time I install or update MASM32 I have to modify VariantTimeToSystemTime (http://msdn2.microsoft.com/en-us/library/ms221440.aspx) in oleaut32.inc as follows:
from
VariantTimeToSystemTime PROTO :DWORD,:DWORD,:DWORD
to
VariantTimeToSystemTime PROTO :QWORD,:DWORD
personally I prefer
VariantTimeToSystemTime PROTO :REAL8,:PTR SYSTEMTIME
as it is self-documenting.
I understand these include files are generated automatically, so maybe it's not an option.
Thanks,
Thanks Greg,
I have just added it to the reference set as while they were generated automatically in the first place, they do not get changed during installation. I will just have to make sure I have no problems building the import libraries after doing this.