Subversion Repositories Kolibri OS

Rev

Rev 7515 | Rev 7606 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7515 Rev 7518
Line 1169... Line 1169...
1169
{
1169
{
1170
	BDVK bdvk;
1170
	BDVK bdvk;
1171
	char cdname[8];
1171
	char cdname[8];
1172
	if (ESBYTE[path+1] == '/') path++;
1172
	if (ESBYTE[path+1] == '/') path++;
1173
	if (ESBYTE[path+1] == 'c') && (ESBYTE[path+2] == 'd')
1173
	if (ESBYTE[path+1] == 'c') && (ESBYTE[path+2] == 'd')
1174
		&& (ESBYTE[path+4] == 0) {
1174
		&& (ESBYTE[path+4] == 0) return 0;
1175
		//hack for http://board.kolibrios.org/viewtopic.php?p=72293#p72279
-
 
1176
		strcpy(#cdname, path);
-
 
1177
		strcat(#cdname, "/1");
-
 
1178
		path = #cdname;
-
 
1179
	}
-
 
1180
	GetFileInfo(path, #bdvk);
1175
	GetFileInfo(path, #bdvk);
1181
	return ConvertSize64(bdvk.sizelo, bdvk.sizehi);
1176
	return ConvertSize64(bdvk.sizelo, bdvk.sizehi);
1182
}
1177
}
Line 1183... Line 1178...
1183
 
1178