INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Error handling functions"
project: "Visual Eiffel Win32 Library"
revision: "$Revision: 1.1 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: winlib
expanded class WAPI_ERROR_SERVER
inherit

WAPI_C_CONST
end

WAPI_WINAPI_ERROR_CODES
end
feature -- Access

GetLastError: INTEGER
-- The 'GetLastError' function returns the calling thread's last-error
-- code value.
--
-- Most Win32 functions set their calling thread's last-error value
-- when they fail; a few functions set it when they succeed.
feature -- Facilities

error_description (error_code: INTEGER): STRING
-- Translate the 'error_code' (returned by 'GetLastError') into
-- readable string

last_error_description: STRING
-- Readable string for `GetLastError'

raise_last_error
-- Raise exception corresponding to last error
end -- class WAPI_ERROR_SERVER

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES