search for: yaocong

Displaying 4 results from an estimated 4 matches for "yaocong".

2011 Sep 02
7
I want to contribute code for wine and become a developer.
I am porting wine to MIPS and do some job in winebuild/ntdll/ etc. I am using qemu to translate x86 instruction and direct the win32 api call from the qemu to wine in MIPS version. Wine on mips is running now! I want to contribute the modification to wine . How can I do that?
2012 Mar 28
0
Re: I want to contribute code for wine and become a developer.
yaocong: It has been some time now. I hope you're still interested to get that back into wine. A first step would be to upload a zipped package with the patches somewhere as you suggested before. then we can see what needs to be done and instruct you in git. It's not time consuming, so you don'...
2011 Aug 30
6
how to cross-compile
I want to compile wine to another architecture,such as ARM,MIPS,PPC. But How to do this ? Thank you in advance.
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 (such