Difference between revisions of "ISInterface:GetInnerSpacePath"
Jump to navigation
Jump to search
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | == Syntax == | ||
+ | *char *GetInnerSpacePath(char *buffer, unsigned long buflen) | ||
== Purpose == | == Purpose == | ||
+ | Places the path to Inner Space into a buffer | ||
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | * char *buffer | ||
+ | : Pointer to the buffer to copy the path to | ||
+ | * unsigned long buflen | ||
+ | : Size of the buffer given | ||
+ | |||
=== Return Value === | === Return Value === | ||
+ | ''none'' | ||
== Examples == | == Examples == | ||
+ | char InnerSpacePath[512]; | ||
+ | pISInterface->GetInnerSpacePath(FilePath,sizeof(FilePath)); | ||
== See Also == | == See Also == |
Latest revision as of 23:52, 2 September 2005
Syntax
- char *GetInnerSpacePath(char *buffer, unsigned long buflen)
Purpose
Places the path to Inner Space into a buffer
Usage
Parameters
- char *buffer
- Pointer to the buffer to copy the path to
- unsigned long buflen
- Size of the buffer given
Return Value
none
Examples
char InnerSpacePath[512]; pISInterface->GetInnerSpacePath(FilePath,sizeof(FilePath));