- indexing
- title: "Visual Eiffel Library.", "The WAPI_DOCINFO class contains the input and output filenames", "and other information used by the %'StartDoc%' function."
- 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_DOCINFO
- inherit
-
WAPI_GET_POINTER
- end
- creation
- make
- feature -- Class data
-
cbSize: INTEGER
-
lpszDocName: POINTER
-
lpszOutput: POINTER
-
lpszDatatype: POINTER
-
fwType: INTEGER
- feature -- Creation
-
make
-
- ensure
-
correct_set:
cbsize = 20
- feature -- Access
-
ptr: POINTER
- feature -- Change
-
set_lpszDocName (p: POINTER)
-
- ensure
-
correct_set:
lpszdocname = p
-
set_lpszOutput (p: POINTER)
-
- ensure
-
correct_set:
lpszoutput = p
-
set_lpszDatatype (p: POINTER)
-
- ensure
-
correct_set:
lpszdatatype = p
-
set_fwType (i: INTEGER)
-
- ensure
-
correct_set:
fwtype = i
end -- class WAPI_DOCINFO