lockmgrapi.hpp
来自「WinCE5.0部分核心源码」· HPP 代码 · 共 115 行
HPP
115 行
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/*++
Module Name:
lckmgrapi.hpp
Abstract:
Core Lock Manager API. This module is used by the Lock Manager API for
FSDs/File Systems.
Revision History:
--*/
#ifndef __LCKMGRAPI_HPP_
#define __LCKMGRAPI_HPP_
#include <windows.h>
//
// LXX_CreateLockContainer - Allocate lock container
//
PVOID
LXX_CreateLockContainer(
);
//
// LXX_DestroyLockContainer - Deallocate lock container
//
VOID
LXX_DestroyLockContainer(
PVOID pvLockContainer
);
//
// LXX_IsLockContainerEmpty - Determine whether lock container is empty
//
BOOL
LXX_IsLockContainerEmpty(
PVOID pvLockContainer
);
//
// LXX_Lock - Add lock to lock container
//
typedef enum _LOCKRESULT {
LR_ERROR = 0,
LR_SUCCESS,
LR_CONFLICT
} LOCKRESULT, *PLOCKRESULT;
LOCKRESULT
LXX_Lock(
PVOID pvLockContainer,
DWORD dwFile,
DWORD dwFlags,
DWORD dwReserved,
DWORD nNumberOfBytesToLockLow,
DWORD nNumberOfBytesToLockHigh,
LPOVERLAPPED lpOverlapped
);
//
// LXX_Unlock - Remove lock from lock container
//
BOOL
LXX_Unlock(
PVOID pvLockContainer,
DWORD dwFile,
DWORD dwReserved,
DWORD nNumberOfBytesToUnlockLow,
DWORD nNumberOfBytesToUnlockHigh,
LPOVERLAPPED lpOverlapped
);
//
// LXX_UnlockLocksOwnedByHandle - Remove all locks from lock container owned by target handle
//
BOOL
LXX_UnlockLocksOwnedByHandle(
PVOID pvLockContainer,
DWORD dwFile
);
//
// LXX_AuthorizeAccess - Determine whether target access is permissible
//
BOOL
LXX_AuthorizeAccess(
PVOID pvLockContainer,
DWORD dwFile,
BOOL fRead,
DWORD dwFilePositionLow,
DWORD dwFilePositionHigh,
DWORD nBytesToBeAccessed
);
#endif // __LCKMGRAPI_HPP_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?