// File system interface.
	AKRESULT SetBasePath(const wchar_t* in_pszBasePath)
	{
		AkOSChar* basePathOsString = NULL;

		CONVERT_WIDE_TO_OSCHAR( in_pszBasePath, basePathOsString );

		SafeAppendTrailingPathSeparator(basePathOsString);

		return g_lowLevelIO.SetBasePath( basePathOsString );
	}
Esempio n. 2
0
        //-----------------------------------------------------------------------------------------
        // Access to LowLevelIO's file localization.
        //-----------------------------------------------------------------------------------------
        // File system interface.
		AKRESULT SetBasePath(
			const AkOSChar*   in_pszBasePath
			)
		{
			return m_lowLevelIO.SetBasePath( in_pszBasePath );
		}
	AKRESULT SetBasePath(AkOSChar* in_pszBasePath)
	{
		SafeAppendTrailingPathSeparator((AkOSChar*)in_pszBasePath);

		return g_lowLevelIO.SetBasePath(in_pszBasePath);
	}