- indexing
- title: ""
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: dm
class DM_CURSOR
- inherit
-
DM_WAPI_SERVER
- end
- creation
- load_from_dll,
- load_from_dll_i
- feature
-
hCursor: INTEGER
-
load_from_dll (dll_name, cur_id: STRING)
-
- require
-
valid_params:
dll_name /= void and then cur_id /= void
-
- ensure
-
valid:
hcursor /= 0
-
load_from_dll_i (dll_name: STRING; cur_id: INTEGER)
-
- require
-
valid_params:
dll_name /= void and then cur_id /= 0
-
- ensure
-
valid:
hcursor /= 0
end -- class DM_CURSOR