mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:02:56 +00:00
- Fix my broken indentation
svn path=/trunk/; revision=35006
This commit is contained in:
parent
5c39323e08
commit
ad456a2ec4
1 changed files with 3 additions and 3 deletions
|
@ -80,7 +80,7 @@ CreateEventExW(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set initial state and event type */
|
/* Set initial state and event type */
|
||||||
InitialState = (dwFlags & CREATE_EVENT_INITIAL_SET) ? TRUE : FALSE;
|
InitialState = (dwFlags & CREATE_EVENT_INITIAL_SET) ? TRUE : FALSE;
|
||||||
EventType = (dwFlags & CREATE_EVENT_MANUAL_RESET) ? NotificationEvent : SynchronizationEvent;
|
EventType = (dwFlags & CREATE_EVENT_MANUAL_RESET) ? NotificationEvent : SynchronizationEvent;
|
||||||
|
|
||||||
|
@ -130,11 +130,11 @@ CreateEventA(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL,
|
||||||
{
|
{
|
||||||
DWORD dwFlags = 0;
|
DWORD dwFlags = 0;
|
||||||
|
|
||||||
/* Set new flags */
|
/* Set new flags */
|
||||||
if (bManualReset) dwFlags |= CREATE_EVENT_MANUAL_RESET;
|
if (bManualReset) dwFlags |= CREATE_EVENT_MANUAL_RESET;
|
||||||
if (bInitialState) dwFlags |= CREATE_EVENT_INITIAL_SET;
|
if (bInitialState) dwFlags |= CREATE_EVENT_INITIAL_SET;
|
||||||
|
|
||||||
/* Call the newer API */
|
/* Call the newer API */
|
||||||
return CreateEventExA(lpEventAttributes,
|
return CreateEventExA(lpEventAttributes,
|
||||||
lpName,
|
lpName,
|
||||||
dwFlags,
|
dwFlags,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue