GetGestureConfig function
Syntax
BOOL WINAPI GetGestureConfig(
_In_ HWND hwnd,
_In_ DWORD dwReserved,
_In_ DWORD dwFlags,
_In_ PUINT pcIDs,
_Inout_ PGESTURECONFIG pGestureConfig,
_In_ UINT cbSize
);
Parameters
hwnd [in]
A handle to the window to get the gesture configuration from.
dwReserved [in]
This value is reserved and must be set to 0.
dwFlags [in]
A gesture command flag value indicating options for retrieving the gesture configuration. See Remarks for additional information and supported values.
pcIDs [in]
The size, in number of gesture configuration structures, that is in the pGestureConfig buffer.
pGestureConfig [in, out]
An array of gesture configuration structures that specify the gesture configuration.
cbSize [in]
The size of the gesture configuration (GESTURECONFIG) structure.
Return value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, use the GetLastError function.
Remarks
Passing a value other than
sizeof(GESTURECONFIG)
for the cbSize parameter will cause calls to this function to fail and GetLastError will return ERROR_INVALID_PARAMETER (87 in decimal). The following table lists the gesture configuration values:
Name
Value
Description
GCF_INCLUDE_ANCESTORS
0x00000001
If specified, GetGestureConfig returns consolidated configuration for the specified window and its parent window chain.
Examples
GESTURECONFIG gc[3];
UINT uiGcs = 3;
ZeroMemory(&gc, sizeof(gc));
gc[0].dwID = GID_ZOOM;
gc[1].dwID = GID_ROTATE;
gc[2].dwID = GID_PAN;
BOOL bResult = GetGestureConfig(hWnd, 0, 0, &uiGcs, gc, sizeof(GESTURECONFIG));
if (!bResult){
DWORD err = GetLastError();
}
Requirements
Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
Winuser.h (include Windows.h)
Library
User32.lib
DLL
User32.dll
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[WinIoT/라즈파이] VS2019로 만든 UWP의 sln을 라즈파이 3+WinIoTCore로 원격 디버깅을 할 수 없을 때의 대처2021년 1월 시점에서 라즈파이 3에 WindowsIoTCore를 넣고 VisualStudio2019에서 UWP 앱을 새로 만들고 디버깅하려고 했는데 잘 디버깅할 수 없었다. 구체적으로는, 「리모트 디버거에 접속할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.