Skip to content

Commit

Permalink
Merge pull request FreeRDP#1672 from cloudbase/master
Browse files Browse the repository at this point in the history
Fixes build issue on Windows
  • Loading branch information
awakecoding committed Jan 29, 2014
2 parents ae9c10e + 9d6dcab commit 009dc28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion winpr/include/winpr/synch.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ WINPR_API BOOL CancelWaitableTimer(HANDLE hTimer);

#endif

#if ((_WIN32) && (_WIN32_WINNT < 0x0600))
#if ((_WIN32) && (_WIN32_WINNT < 0x0403))

WINPR_API BOOL InitializeCriticalSectionEx(LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount, DWORD Flags);

Expand Down
2 changes: 1 addition & 1 deletion winpr/libwinpr/synch/critical.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ VOID DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection)

#endif

#if ((_WIN32) && (_WIN32_WINNT < 0x0600))
#if ((_WIN32) && (_WIN32_WINNT < 0x0403))

typedef BOOL (WINAPI * PINITIALIZE_CRITICAL_SECTION_EX_FN)(LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount, DWORD Flags);

Expand Down

0 comments on commit 009dc28

Please sign in to comment.