comparison libmpcodecs/ad_realaud.c @ 10652:b04560162c1f

sysm --> syms typo fix by Joey Parrish
author diego
date Sun, 17 Aug 2003 21:18:02 +0000
parents 2e46e51269c1
children 6a61d694f7d3
comparison
equal deleted inserted replaced
10651:efb6dcac967d 10652:b04560162c1f
160 #endif 160 #endif
161 void* WINAPI LoadLibraryA(char* name); 161 void* WINAPI LoadLibraryA(char* name);
162 void* WINAPI GetProcAddress(void* handle,char *func); 162 void* WINAPI GetProcAddress(void* handle,char *func);
163 int WINAPI FreeLibrary(void *handle); 163 int WINAPI FreeLibrary(void *handle);
164 164
165 static int load_sysm_windows(char *path) 165 static int load_syms_windows(char *path)
166 { 166 {
167 void *handle; 167 void *handle;
168 168
169 mp_msg(MSGT_DECVIDEO, MSGL_INFO, "opening win32 dll '%s'\n", path); 169 mp_msg(MSGT_DECVIDEO, MSGL_INFO, "opening win32 dll '%s'\n", path);
170 #ifdef WIN32_LOADER 170 #ifdef WIN32_LOADER
221 then try to load the windows ones */ 221 then try to load the windows ones */
222 #ifdef HAVE_LIBDL 222 #ifdef HAVE_LIBDL
223 if (strstr(sh->codec->dll,".dll") || !load_syms_linux(path)) 223 if (strstr(sh->codec->dll,".dll") || !load_syms_linux(path))
224 #endif 224 #endif
225 #ifdef USE_WIN32DLL 225 #ifdef USE_WIN32DLL
226 if (!load_sysm_windows(sh->codec->dll)) 226 if (!load_syms_windows(sh->codec->dll))
227 #endif 227 #endif
228 { 228 {
229 mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_MissingDLLcodec, sh->codec->dll); 229 mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_MissingDLLcodec, sh->codec->dll);
230 mp_msg(MSGT_DECVIDEO, MSGL_HINT, "Read the RealAudio section of the DOCS!\n"); 230 mp_msg(MSGT_DECVIDEO, MSGL_HINT, "Read the RealAudio section of the DOCS!\n");
231 free(path); 231 free(path);