Changeset 33911 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Nov 9, 2010 4:18:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r33903 r33911 1271 1271 } 1272 1272 1273 1274 1275 #if 0 /* unfinished code => laptop */ 1276 1277 /* 1278 * 1279 * V F S c h a i n s p e c i f i c a t i o n s 1280 * V F S c h a i n s p e c i f i c a t i o n s 1281 * V F S c h a i n s p e c i f i c a t i o n s 1282 * 1283 */ 1284 1285 /** 1286 * A parsed VFS setup specficiation. 1287 * 1288 * Some specification examples. 1289 * :iprtvfs:ios(stdfile="./foo.tgz")|ios(gzip)|vfs(tar) 1290 */ 1291 typedef struct RTVFSPARSEDSPEC 1292 { 1293 uint32_t cElements; 1294 } RTVFSPARSEDSPEC; 1295 /** Pointer to a parse VFS setup specification. */ 1296 typedef RTVFSPARSEDSPEC *PRTVFSPARSEDSPEC; 1297 1298 1299 /** 1300 * Parses the VFS setup specficiation. 1301 * 1302 * @returns 1303 * @param pInfo The output. 1304 * @param pszSpec The input. This needs some more work but the basic 1305 * are that anything that does not start with ":iprtvfs:" 1306 * will be treated like a file. ":iprtvfs:" prefixed 1307 * specifications will be understood as a VFS chain 1308 * specification and parsed and constructured (by the 1309 * caller). 1310 * @param 1311 */ 1312 static int rtVfsSpecParse(PRTVFSPARSEDSPEC pInfo, const char *pszSpec) 1313 { 1314 1315 } 1316 1317 1318 RTDECL(int) RTVfsOpenIoStreamFromSpec(const char *pszSpec, uint32_t fOpen, RTVFSIOSTREAM hVfs) 1319 { 1320 1321 } 1322 1323 #endif 1324
Note:
See TracChangeset
for help on using the changeset viewer.