vbox的更動 39626 路徑 trunk/src/VBox/Runtime/r3/dir.cpp
- 時間撮記:
- 2011-12-15 上午11:33:47 (13 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/dir.cpp
r39612 r39626 517 517 * @param pszFilter Pointer to where the filter start in the path. NULL if no filter. 518 518 * @param enmFilter The type of filter to apply. 519 */ 520 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter) 519 * @param fOpen Open flags, RTDIROPENFILTERED_FLAGS_*. 520 */ 521 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter, uint32_t fOpen) 521 522 { 522 523 /* … … 646 647 * Hand it over to the native part. 647 648 */ 648 rc = rtDirNativeOpen(pDir, szRealPath );649 rc = rtDirNativeOpen(pDir, szRealPath, fOpen); 649 650 if (RT_SUCCESS(rc)) 650 651 *ppDir = pDir; … … 668 669 * Take common cause with RTDirOpenFiltered(). 669 670 */ 670 int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE );671 int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE, 0); 671 672 LogFlow(("RTDirOpen(%p:{%p}, %p:{%s}): return %Rrc\n", ppDir, *ppDir, pszPath, pszPath, rc)); 672 673 return rc; … … 711 712 * and initialize the handle, and finally call the backend. 712 713 */ 713 int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter );714 int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter, fOpen); 714 715 715 716 LogFlow(("RTDirOpenFiltered(%p:{%p}, %p:{%s}, %d): return %Rrc\n",
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器