Up: GEOS SDK TechDocs | Up | Prev: pdisk ... | Next: pinst ...

pgs

pgs <address>

Examples:

"pgs"
List the graphics string at DS:SI
"pgs ^hdi"
Lift the graphics string whose handle is in DI, starting at the current position.
"pgs -s ^hdi"
List the graphics string whose handle is in DI, starting at the beginning of the graphics string.
"pgs -l3 ^hdi"
List three elements of the graphics string whose handle is in DI, starting at the current position.

List the contents of a graphics string.

See Also: pbitmap.

phandle

phandle <handle ID>

Examples:

"phandle 1a8ch"
print the handle 1a8ch

Print out a handle.

See Also: hwalk, lhwalk.

pharray

pharray [<flags>] [<vmfile> <dirblk>]

Examples:

"pharray"
Print the huge array at ^vbx:di (header only)
"pharray dx cx"
Print the huge array at ^vdx:cx (header only)
"pharray -e"
Print the huge array at ^vbx:di and print the elements in the array
"pharray -tMyStruct"
Print the huge array at ^vbx:di and print the elements where the elements are of type MyStruct
"pharray -e3"
Print the huge array at ^vbx:di and print the third element
"pharray -h"
Print the header of the HugeArray at ^vbx:di, using the default header type (HugeArrayDirectory).
"pharray -hMyHeader"
Print the huge array at ^vbx:di (header only) where the header is of type MyHeader
"pharray -d"
Print the directory elements of a HugeArray
"pharray -e5 -l8"
Print 8 HugeArray elements starting with number 5

Print information about a huge array.

pini

pini [<category>]

Examples:

"pini Lights Out"
Print out the contents of the Lights Out category in each .ini file
"pini"
Print out each currently loaded .ini file.

Provides you with the contents of the .ini files being used by the current GEOS session.

<category> may contain spaces and other such fun things. In fact, if you attempt to quote the argument (e.g. "pini {Lights Out}"), this will not find the category.


Up: GEOS SDK TechDocs | Up | Prev: pdisk ... | Next: pinst ...