(C) 1998 AROS - The Amiga Research OS
NAME
#include <proto/dos.h>
#include <dos/var.h>
struct LocalVar * FindVar (name , type)
LOCATION
In DOSBase at offset 153
SYNOPSIS
STRPTR name
ULONG type
FUNCTION
Finds a local variable structure.
INPUTS
name
the name of the variable you wish to find. Note that variable names follow the same syntax and semantics as filesystem names.
type
The type of variable to be found (see <dos/var.h>).
RESULT
A pointer to the LocalVar structure for that variable if it was found. If the variable wasn't found, or was of the wrong type NULL will be returned.
EXAMPLE
SEE ALSO
DeleteVar(), GetVar(), SetVar()
NOTES
BUGS
INTERNALS
HISTORY
20.10.1998 hkiel
Amiga Research OS
26.04.1998 bergers
Setting and finding more than one local var is no luxury any more... :-)
28.11.1997 bergers
Fixed some bugs
16.08.1997 iaint
These may not always work, but try them anyway
27.01.1997 ldp
Polish
09.12.1996 aros
Added empty templates for all missing functions
Moved #include's into first column