Esempio n. 1
0
	dword ParsePath(const CStringA& Path, CStringA& FSPath)
	{
		if ((Path.GetCh(0) == '/') &&
			(Path.GetCh(1) == 'd') &&
			(Path.GetCh(3) == '/'))
		{
			dword FSDevIndex = Path.GetCh(2) - '0';
			FSPath = Path.RightAbs(4);
			return FSDevIndex;
		}
		else
		{
			FSPath = Path;
			return 0;
		}
	}