Commit 8f2f41dc authored by Pierre Ynard's avatar Pierre Ynard

WinCE: fix vlc_GetCPUCount()

The function used by the Win32 implementation is not available, so just
leave it unimplemented.
parent 2fe5cdf3
...@@ -323,7 +323,7 @@ const struct ...@@ -323,7 +323,7 @@ const struct
*/ */
unsigned vlc_GetCPUCount(void) unsigned vlc_GetCPUCount(void)
{ {
#ifdef WIN32 #if defined(WIN32) && !defined(UNDER_CE)
DWORD process_mask; DWORD process_mask;
DWORD system_mask; DWORD system_mask;
if (!GetProcessAffinityMask(GetCurrentProcess(), &process_mask, &system_mask)) if (!GetProcessAffinityMask(GetCurrentProcess(), &process_mask, &system_mask))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment