Ignore:
Timestamp:
Sep 1, 2016, 4:42:08 AM (9 years ago)
Author:
bird
Message:

updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/nt/kFsCache.h

    r2855 r2856  
    231231
    232232    /** Handle to the directory (we generally keep it open). */
     233#ifndef DECLARE_HANDLE
     234    KUPTR               hDir;
     235#else
    233236    HANDLE              hDir;
     237#endif
    234238    /** The device number we queried/inherited when opening it. */
    235239    KU64                uDevNo;
     
    418422PKFSOBJ     kFsCacheLookupA(PKFSCACHE pCache, const char *pszPath, KFSLOOKUPERROR *penmError);
    419423PKFSOBJ     kFsCacheLookupW(PKFSCACHE pCache, const wchar_t *pwszPath, KFSLOOKUPERROR *penmError);
     424PKFSOBJ     kFsCacheLookupRelativeToDirA(PKFSCACHE pCache, PKFSDIR pParent, const char *pszPath, KU32 cchPath,
     425                                         KFSLOOKUPERROR *penmError);
     426PKFSOBJ     kFsCacheLookupRelativeToDirW(PKFSCACHE pCache, PKFSDIR pParent, const wchar_t *pwszPath, KU32 cwcPath,
     427                                         KFSLOOKUPERROR *penmError);
    420428
    421429KU32        kFsCacheObjRelease(PKFSCACHE pCache, PKFSOBJ pObj);
    422430KU32        kFsCacheObjRetain(PKFSOBJ pObj);
     431PKFSUSERDATA kFsCacheObjAddUserData(PKFSCACHE pCache, PKFSOBJ pPathObj, KUPTR uKey, KSIZE cbUserData);
     432PKFSUSERDATA kFsCacheObjGetUserData(PKFSCACHE pCache, PKFSOBJ pPathObj, KUPTR uKey);
    423433
    424434PKFSCACHE   kFsCacheCreate(KU32 fFlags);
Note: See TracChangeset for help on using the changeset viewer.