|
Unicorn XML Toolkit Version 1.50.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: �CONSTR�|� FUNCTION �|�DATA | DETAIL: �CONSTR�|� FUNCTION �|�DATA |
class CSystem { public: static bool GetSystemProperty( const WCHAR *pszName, CString &strValue); static bool GetSystemPath(CString &strSystemPath); static bool ResolvePathName( const WCHAR *pszFileName, CString &strFullPathName); };
The collection of static system-specific functions.
Function Summary | |
bool
|
GetSystemProperty
(const WCHAR *pszName, CString &strValue);
����������Returns a value of the specified system property. |
bool
|
GetSystemPath
(CString &strSystemPath);
����������Returns the system path defined as the full path of the current working directory. |
bool
|
ResolvePathName
(const WCHAR *pszFileName, CString &strFullPathName);
����������Returns the full (absolute) path name of the file referenced with the specified (possibly relative) path name. |
Function Detail |
static bool GetSystemProperty( const WCHAR *pszName, CString &strValue);
Returns a value of the specified system property.
Implementation of system properties is platform-dependent.
pszName
- the name of the system propertystrValue
- on return, the string value of
the requested system property; unspecified if the system
property is not foundtrue
if the specified system property
was found;
false
otherwisestatic bool GetSystemPath(CString &strSystemPath);
Returns the system path defined as the full path of the current working directory.
strSystemPath
- on return, the system path;
unspecified if the function failedtrue
if the system path was
obtained successfully;
false
if the function failedstatic bool ResolvePathName( const WCHAR *pszFileName, CString &strFullPathName);
Returns the full (absolute) path name of the file referenced with the specified (possibly relative) path name.
The algorithm for obtaining the full path name is platform-dependent.
pszFileName
- the source path namestrFullPathName
- on return, the full path name;
unspecified if the function failedtrue
if the full path name was
obtained successfully;
false
if the function failed
|
Unicorn XML Toolkit Version 1.50.00 |
|||||||||
� PREV CLASS �� NEXT CLASS | FRAMES��NO FRAMES | |||||||||
SUMMARY: �CONSTR�|� FUNCTION �|�DATA | DETAIL: �CONSTR�|� FUNCTION �|�DATA |