Kaydet (Commit) 99208858 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Make --enable-vlc at least compile on Mac OS X

...no idea whether the change is actually any good, though.

Change-Id: Ib9e9bfbc894e9e0dde1f1a2e882bd09944f4d6d4
üst 728e2f41
......@@ -167,7 +167,10 @@ namespace
if (pEnvData == NULL)
return -1;
#if defined WNT
#if defined MACOSX
// Explicit converts from NSView* to int
const int id = reinterpret_cast<int>( pEnvData->pView );
#elif defined WNT
// Explicit converts from HWND to int
const int id = reinterpret_cast<int>( pEnvData->hWnd );
#else
......
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