The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: GregL on December 24, 2005, 12:32:59 AM

Title: VariantTimeToSystemTime
Post by: GregL on December 24, 2005, 12:32:59 AM
In oleaut32.inc

VariantTimeToSystemTime PROTO :DWORD,:DWORD,:DWORD

should be

VariantTimeToSystemTime PROTO :DWORD,:DWORD

Title: Re: VariantTimeToSystemTime
Post by: hutch-- on December 24, 2005, 03:36:50 AM
Greg,

The actual decorated name is "_VariantTimeToSystemTime@12" so if the arguments are DWORD sized, 3 parameters are correct. I took this from the oleaut32 library for XP. The older ones are the same.
Title: Re: VariantTimeToSystemTime
Post by: GregL on December 24, 2005, 04:27:34 AM
Hutch,

You are absolutely right. My mistake. It does take 12 bytes. One of the args is a double.

INT VariantTimeToSystemTime(
  double  vtime,             
  LPSYSTEMTIME  lpSystemTime 
);


I was getting an error from POASM about the arguments. I quickly looked at MSDN, saw two args and didn't notice the double.

POASM's INVOKE  doesn't like
VariantTimeToSystemTime PROTO :DWORD,:DWORD,:DWORD
it also doen't like VariantTimeToSystemTime PROTO :REAL8,:DWORD
nor VariantTimeToSystemTime PROTO :QWORD,:DWORD

but it did accept VariantTimeToSystemTime PROTO :DWORD,:DWORD which is wrong.

Thanks for pointing that out. When using POASM, I need to keep in mind that I'm using a newly released assembler. I'm also unable to assemble most of the FPU instructions with POASM. I posted it on Pelle's Forum.

Title: Re: VariantTimeToSystemTime
Post by: GregL on December 24, 2005, 05:24:03 AM
Hutch,

I tried assembling the same VariantTimeToSystem code with MASM. MASM's INVOKE doesn't like

VariantTimeToSystemTime PROTO :DWORD,:DWORD,:DWORD
either.

Changing the PROTO to
VariantTimeToSystemTime PROTO :REAL8,:DWORD
or
VariantTimeToSystemTime PROTO :QWORD,:DWORD fixed the problem.

I'm using it like this
invoke VariantTimeToSystemTime, varDate1, ADDR MyST1