~ubuntu-branches/ubuntu/vivid/mpv/vivid

« back to all changes in this revision

Viewing changes to video/filter/vf_dlopen.c

  • Committer: Package Import Robot
  • Author(s): Artur Rona
  • Date: 2015-02-08 11:38:05 UTC
  • mfrom: (28.1.4 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20150208113805-hb7kk68170y002es
Tags: 0.7.3-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/rules:
    + Disable altivec on ppc64el again, as it FTBFS with it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
#ifdef _WIN32
36
36
# include <windows.h>
37
 
# define DLLOpen(name)           LoadLibrary(name)
 
37
# define DLLOpen(name)           LoadLibraryA(name)
38
38
# define DLLClose(handle)        FreeLibrary(handle)
39
39
# define DLLSymbol(handle, name) ((void *)GetProcAddress(handle, name))
40
40
#else