Mercurial > mplayer.hg
view loader/wine/elfdll.h @ 10970:de7036f31e5a
Sometimes (especially with big images) reading pitch 0 from card's register
returns 0 (probably due to full card's FIFO), which leads to SIGFPE later.
Fixed (or workarounded) by rereading pitch0, until it's not zero.
author | lumag |
---|---|
date | Wed, 01 Oct 2003 21:03:00 +0000 |
parents | 3b5f5d1c5041 |
children | 93b87066f9da |
line wrap: on
line source
#ifndef __WINE_ELFDLL_H #define __WINE_ELFDLL_H #include "module.h" #include "windef.h" WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags); HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname); void ELFDLL_UnloadLibrary(WINE_MODREF *wm); void *ELFDLL_dlopen(const char *libname, int flags); extern char *extra_ld_library_path; #endif