INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: Icon 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
class WAPI_ICON_FUNCTIONS
inherit

WAPI_ERROR_SERVER
end
feature -- Access

DrawIcon (hdc, x, y, hicon: INTEGER)
-- The `DrawIcon' function draws an icon in the client area of the
-- window of the specified device context.
require
correct_hdc: hdc /= null_
correct_hicon: hicon /= null_

LoadIcon (hinst: INTEGER; lpszicon: INTEGER): INTEGER
-- The 'LoadIcon' function loads the specified icon resource from the
-- executable (.EXE) file associated with an application instance.

LoadIconP (hinst: INTEGER; lpszicon: POINTER): INTEGER
-- The 'LoadIconP' function loads the specified icon resource from the
-- executable (.EXE) file associated with an application instance.
require
correct_lpszicon: lpszicon /= default_pointer
end -- class WAPI_ICON_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES