Vijay Kiran Kamuju infyquest@gmail.com wrote:
added reference to kernel32.GetLocalTime to _getsystime stub function (support.microsoft.com/default.aspx?scid=kb;en-us;99456)
-@ stub _getsystime #(ptr) +@ cdecl _getsystime(ptr) kernel32.GetLocalTime
You can't just forward _getsystime to GetLocalTime, they accept different arguments: struct tm * vs. SYSTEMTIME *. Have a look at your MSVC docs.
I couldnt get the necessary info on it from msdn. Ill be sending a new patch for with the change for _getsystemtime
On 9/19/05, Dmitry Timoshkov dmitry@baikal.ru wrote:
Vijay Kiran Kamuju infyquest@gmail.com wrote:
added reference to kernel32.GetLocalTime to _getsystime stub function (support.microsoft.com/default.aspx?scid=kb;en-us;99456http://support.microsoft.com/default.aspx?scid=kb;en-us;99456
)
-@ stub _getsystime #(ptr) +@ cdecl _getsystime(ptr) kernel32.GetLocalTime
You can't just forward _getsystime to GetLocalTime, they accept different arguments: struct tm * vs. SYSTEMTIME *. Have a look at your MSVC docs.
-- Dmitry.
Vijay Kiran Kamuju infyquest@gmail.com wrote:
I couldnt get the necessary info on it from msdn.
MinGW should have all the necessary info as well.