| 825 | } |
| 826 | |
| 827 | DWORD PeParser::alignValue(DWORD badValue, DWORD alignTo) |
| 828 | { |
| 829 | return (((badValue + alignTo - 1) / alignTo) * alignTo); |
| 830 | } |
| 831 | |
| 832 | bool PeParser::addNewLastSection(const CHAR * sectionName, DWORD sectionSize, BYTE * sectionData) |
| 833 | { |
nothing calls this directly
no outgoing calls
no test coverage detected