Changeset 3635 for trunk/src/kernel32/winimagepeldr.cpp
- Timestamp:
- May 30, 2000, 12:32:09 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagepeldr.cpp
r3625 r3635 1 /* $Id: winimagepeldr.cpp,v 1.4 4 2000-05-28 16:45:13sandervl Exp $ */1 /* $Id: winimagepeldr.cpp,v 1.45 2000-05-29 22:32:09 sandervl Exp $ */ 2 2 3 3 /* … … 10 10 * 11 11 * TODO: Check psh[i].Characteristics for more than only the code section 12 * TODO: Make resource section readonly when GDI32 is fixed 12 13 * 13 14 * NOTE: RSRC_LOAD is a special flag to only load the resource directory … … 844 845 section[i].pageflags = PAG_WRITE | PAG_READ; 845 846 break; 847 848 case SECTION_RESOURCE: 849 //TODO: GDI32 changes some bitmap structures to avoid problems in Open32 850 // -> causes crashes if resource section is readonly 851 // -> make it readonly again when gdi32 has been rewritten 852 section[i].pageflags = PAG_WRITE | PAG_READ; 853 break; 854 846 855 case SECTION_READONLYDATA: 847 case SECTION_RESOURCE:848 856 case SECTION_TLS: 849 857 default:
Note:
See TracChangeset
for help on using the changeset viewer.