annotate loader/wine/elfdll.h @ 7414:00c3f129908f

update & GUI CP1251 encoding in FFT
author iive
date Mon, 16 Sep 2002 13:15:20 +0000
parents 3b5f5d1c5041
children 93b87066f9da
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 #ifndef __WINE_ELFDLL_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2 #define __WINE_ELFDLL_H
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 #include "module.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 #include "windef.h"
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
7 WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
8 HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
9 void ELFDLL_UnloadLibrary(WINE_MODREF *wm);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
10
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
11 void *ELFDLL_dlopen(const char *libname, int flags);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12 extern char *extra_ld_library_path;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
13
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
14 #endif