INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Visual Eiffel Library.", "Win32 API: Timer 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_TIMER_FUNCTIONS
inherit

WAPI_ERROR_SERVER
end
feature -- Access

SetTimer (hwnd, idtimer, utimeout: INTEGER; tmprc: POINTER): INTEGER
-- The 'SetTimer' function creates a timer with the specified
-- time-out value.
ensure
correct_result: Result /= null_

KillTimer (hwnd, idevent: INTEGER)
-- The 'KillTimer' procedure destroys the specified timer. The system
-- searches the message queue for any pending WM_TIMER messages
-- associated with the timer and removes them.
end -- class WAPI_TIMER_FUNCTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES