Share via


CEL_SEM_RELEASE

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure identifies a semaphore that has been released by a thread.

Syntax

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 ReleaseSemaphoree.
  • dwPreviousCount
    Corresponds to the lpPreviousCount parameter of ReleaseSemaphore.

Requirements

Header celog.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

ReleaseSemaphore