Lines Matching refs:exportsSection
242 memset(&exportsSection, 0, sizeof(exportsSection)); in emit()
243 strcpy((char*)&exportsSection.Name, ".edata"); in emit()
244 exportsSection.Misc.VirtualSize = pageAlign(exportsSize); in emit()
245 exportsSection.VirtualAddress = exportsPage; in emit()
246 exportsSection.SizeOfRawData = fileAlign(exportsSize); in emit()
247 exportsSection.PointerToRawData = textSection.PointerToRawData + fileAlign(codeSize); in emit()
248 exportsSection.PointerToRelocations = 0; in emit()
249 exportsSection.PointerToLinenumbers = 0; in emit()
250 exportsSection.NumberOfRelocations = 0; in emit()
251 exportsSection.NumberOfLinenumbers = 0; in emit()
252 exportsSection.Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | in emit()
260 relocSection.PointerToRawData = exportsSection.PointerToRawData + fileAlign(exportsSize); in emit()
311 fwrite(&exportsSection, 1, sizeof(textSection), file); in emit()
339 fseek(file, exportsSection.PointerToRawData, SEEK_SET); in emit()