INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "EOLE_CONNECTDATA class"
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_CONNECTDATA
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 (CONNECTDATA)) from memory pool.
-- Params:
-- None.
-- Return Value:
-- Pointer to alocated memory block.
-- Notes:
-- None.

set_p_unk (p_unk: EOLE_UNKNOWN)
-- Purpose:
-- Set the 'pUnk' member of the corresponding
-- C++ structure to the specified connect_data element Height
-- Params:
-- p_unk [in]
-- p_unk of the connect_data element
-- to init the corresponding field of the structure.
-- Return Value:
-- None.
-- Notes:
-- None.

get_p_unk: EOLE_UNKNOWN
-- Purpose:
-- Resturn the value of the 'pUnk' member of the
-- corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- p_unk.
-- Notes:
-- None.

set_cookie (cookie: INTEGER)
-- Purpose:
-- Set the 'dwCookie' member of the corresponding
-- C++ structure to the specified connect_data element dwCookie.
-- Params:
-- cookie [in]
-- cookie of the connect_data element
-- to init the corresponding field of the structure.
-- Return Value:
-- None.
-- Notes:
-- None.

get_cookie: INTEGER
-- Purpose:
-- Resturn the value of the 'dwCookie' member of the
-- corresponding C++ structure.
-- Params:
-- None.
-- Return Value:
-- cookie.
-- Notes:
-- None.
end -- class EOLE_CONNECTDATA

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES