INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "This is an Eiffel wrap of the 64-bit value representing", "the number of 100-nanosecond intervals since", "January 1, 1601. This format used by OLE to represent", "date and time."
project: "Visual Eiffel Library"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: wine
class EOLE_FILETIME
inherit

EOLE_OBJECT_WITH_POINTER
end
creation

make
feature

make
-- Purpose:
-- Create an object.
-- Params:
-- None.
-- Return Value:
-- None.
-- Notes:
-- It's a dummy constructor now.

allocate: POINTER
-- Purpose:
-- Allocate the physical memory block of nesessary size
-- (sizeof (FILETIME)) from memory pool.
-- Params:
-- None.
-- Return Value:
-- Pointer to alocated memory block.
-- Notes:
-- None.

set_high_date_time (high_date_time: INTEGER)
-- Purpose:
-- Set high 32 bit of corresponding C++
-- structure to OLE date/time.
-- Params:
-- high_date_time [in]
-- high 32 bit of the OLE date/time.
-- Return Value:
-- None.
-- Notes:
-- None.

set_low_date_time (low_date_time: INTEGER)
-- Purpose:
-- Set low 32 bit of corresponding C++
-- structure to OLE date/time.
-- Params:
-- low_date_time [in]
-- low 32 bit of the OLE date/time.
-- Return Value:
-- None.
-- Notes:
-- None.

get_high_date_time: INTEGER
-- Purpose:
-- Return the high 32 bit of corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- High 32 bits of the OLE date/time.
-- Notes:
-- None.

get_low_date_time: INTEGER
-- Purpose:
-- Return the low 32 bit of corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- Low 32 bits of the OLE date/time.
-- Notes:
-- None.
end -- class EOLE_FILETIME

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES