search for: map_dll

Displaying 1 result from an estimated 1 matches for "map_dll".

Did you mean: map_dbl
2011 Mar 11
0
map_dll in libs/wine/loader.c ,what do it do?
Hi,I am planting wine to a new Operating System. I found that in libs/wine/loader.c ->map_dll ,a piece of code like: Code: /* module address must be aligned on 64K boundary */ addr = (BYTE *)((nt_descr->OptionalHeader.ImageBase + 0xffff) & ~0xffff); if (wine_anon_mmap( addr, page_size, PROT_READ|PROT_WRITE, MAP_FIXED ) != addr) return NULL; My questing is the so (s...