tags:

views:

161

answers:

1

Hi, I want to run a auto modify .dll service, users submit a specific .dll, I modify it on the server, then user can download modified version of the .dll. Are there any native Linux app that provide common Win32 PE modification capabilities like Icons, Strings, Accelerators, Dialogues, etc. which at least provide a commandline or scripting API ?

+4  A: 

i586-mingw32msvc-windres as a part of the mingw package.

NAME
       windres - manipulate Windows resources.

Command line only, but you can check the source as binutils are free (as in speech).

LiraNuna
Thank you LiraNuna, it's very helpful.But I have problem compile modified .rc back to .dll, I use the commandline windres test.dll test.rcgot the desired test.rc, I modified something, then windres test.rc test.dllThe test.dll is corrupted.Any ideas?
est
Unfortunately I'm not a windows developer so I have no idea how to actually use this, I just know it exists :)
LiraNuna