Приветствую форум, ребята подскажите пожалуйста, есть exe файл, как его можно засунуть и куда его сувать в код и в какой код, что бы на выходе получился dll, с точкой входа! буду прзинаетелен за примеры такой компиляции!
A .DLL and .EXE are both PE files and are virtually identical. The primary difference between the two is an identifier in the IMAGE_FILE_HEADER - the characteristics member and how the Windows OS treats the file types. Additionally, DLLs will have functions which can be exported, .EXEs files do not have export address tables.
You can modify the .EXE to have .DLL characteristics, but achieving DLL functionality, such as the ability to export functions, cannot be achieved easily (if at all, if it is a proprietary library...)