Displaying 3 results from an estimated 3 matches for "setlasterrorex".
Did you mean:
setlasterror
2006 Aug 21
1
[ win32utils-Bugs-5479 ] Incorrect SetLastError declarations
...itted By: Nobody (None)
Assigned to: Nobody (None)
Summary: Incorrect SetLastError declarations
Initial Comment:
windows-pr-0.5.3
lib\windows\error.rb
SetLastError = Win32API.new(''kernel32'', ''GetLastError'', ''L'', ''V'')
SetLastErrorEx = Win32API.new(''kernel32'', ''GetLastError'', ''LL'', ''V'')
Should import SetLastError instead of GetLastError.
----------------------------------------------------------------------
You can respond by visiting:
http://rubyforge...
2006 Aug 21
0
[ win32utils-Bugs-5479 ] Incorrect SetLastErrordeclarations
...itted By: Nobody (None)
Assigned to: Nobody (None)
Summary: Incorrect SetLastError declarations
Initial Comment:
windows-pr-0.5.3
lib\windows\error.rb
SetLastError = Win32API.new(''kernel32'', ''GetLastError'', ''L'', ''V'')
SetLastErrorEx = Win32API.new(''kernel32'', ''GetLastError'', ''LL'', ''V'')
Should import SetLastError instead of GetLastError.
----------------------------------------------------------------------
You can respond by visiting:
http://rubyforge...
2008 Jun 18
2
[ win32utils-Bugs-20722 ] Windows::Error.get_last_error only returns the first character (PATCH)
...9;I'')
- API.new(''FormatMessage'', ''LLLLPLP'', ''L'')
+ API.new(''FormatMessageA'', ''LLLLPLP'', ''L'')
+ FormatMessage = FormatMessageA
begin
API.new(''SetLastErrorEx'', ''LL'', ''V'', ''user32'')
----------------------------------------------------------------------
>Comment By: John Whitley (whitley)
Date: 2008-06-18 16:22
Message:
Actually, I rescind my patch above. The deeper problem
seems to...