CEL_SEM_RELEASE
This structure identifies a semaphore that has been released by a thread.
typedef struct __CEL_SEM_RELEASE {
HANDLE hSem;
DWORD dwReleaseCount;
DWORD dwPreviousCount;
} CEL_SEM_RELEASE, *PCEL_SEM_RELEASE;
Members
- hSem
Handle of the semaphore being released. - dwReleaseCount
Corresponds to the lReleaseCount parameter of ReleaseSemaphore. - dwPreviousCount
Corresponds to the lpPreviousCount parameter of ReleaseSemaphore.
Requirements
OS Versions: Windows CE 3.0 and later.
Header: Celog.h.
See Also
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.