The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: GregL on July 21, 2007, 07:02:16 PM

Title: VariantTimeToSystemTime
Post by: GregL on July 21, 2007, 07:02:16 PM
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,
Title: Re: VariantTimeToSystemTime
Post by: hutch-- on July 21, 2007, 11:59:22 PM
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.