Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | no message |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
c49238f78442b3d5b8dd60f471a2446e |
User & Date: | rmsimpson 2008-07-16 23:32:01.000 |
Context
2008-07-16
| ||
23:32 | 1.0.52.0 check-in: 1084c98790 user: rmsimpson tags: sourceforge | |
23:32 | no message check-in: c49238f784 user: rmsimpson tags: sourceforge | |
2008-07-01
| ||
05:24 | First pass at LINQ support for VS2008 SP1 beta1 check-in: ee1d336998 user: rmsimpson tags: sourceforge | |
Changes
Changes to tools/mergebin/mergebin.cpp.
︙ | ︙ | |||
552 553 554 555 556 557 558 | if (pNT->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI && (pCor->Flags & 0x08)) { PIMAGE_SECTION_HEADER section = IMAGE_FIRST_SECTION(pNT); for (UINT i=0; i < pNT->FileHeader.NumberOfSections; i++, section++) { if (_tcscmp((LPCSTR)section->Name, _T(".bss")) == 0) { | > | | | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | if (pNT->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI && (pCor->Flags & 0x08)) { PIMAGE_SECTION_HEADER section = IMAGE_FIRST_SECTION(pNT); for (UINT i=0; i < pNT->FileHeader.NumberOfSections; i++, section++) { if (_tcscmp((LPCSTR)section->Name, _T(".bss")) == 0) { _tcscpy((LPSTR)section->Name, _T(".idata")); //section->Characteristics &= ~IMAGE_SCN_CNT_INITIALIZED_DATA; //section->Characteristics |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; DWORD dwBSSRVA = section->VirtualAddress; LPBYTE pBSS = (LPBYTE)peDest.GetPtrFromRVA(dwBSSRVA); for (DWORD u = 0; u < section->SizeOfRawData; u++) { pBSS[u] = 0; } } |
︙ | ︙ |