How do I make a Win32 PE executable with included resources and specific VERSIONINFO information with an x86 assembler?

StackOverflow https://stackoverflow.com/questions/9012698

سؤال

What tools would I use to create a Windows 95 and NT compatible executable that includes specific resources (.rsrc data) and specific VERSIONINFO data (such as the "CompanyName" and the "FileDescription") and assemble x86 code?

Would FASM work?

Edit: Thanks for the correction, Jens. Question edited.

هل كانت مفيدة؟

المحلول

CompanyName and FileDescription are not attributes of the PE header, but of the VERSIONINFO resource, so you wouldn't need custom PE headers.

FASM has excellent means of including resource data.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top