Request Plugin

Questions, downloads, issues related to plugins for Enigma Protector
Post Reply
codewarrior
Posts: 2
Joined: Tue Jan 23, 2018 9:41 am

Request Plugin

Post by codewarrior »

Hello good day can i request a plugin that can create process for executable file...
Enigma
Site Admin
Posts: 2939
Joined: Wed Aug 20, 2008 2:24 pm

Re: Request Plugin

Post by Enigma »

This is soo simple.

Attached project can be opened in Lazarus/FreePascal or Delphi to compile a plugin dll.

The magic is there:

Code: Select all

procedure Enigma_Plugin_OnInit;
begin
  // This function is calling when the protected file is being initialized
  // when main program is not initialized yet

  ShellExecuteW(0, 'open', 'myexe.exe', nil, nil, SW_SHOW);
end;
You do not have the required permissions to view the files attached to this post.
codewarrior
Posts: 2
Joined: Tue Jan 23, 2018 9:41 am

Re: Request Plugin

Post by codewarrior »

Enigma wrote:This is soo simple.

Attached project can be opened in Lazarus/FreePascal or Delphi to compile a plugin dll.

The magic is there:

Code: Select all

procedure Enigma_Plugin_OnInit;
begin
  // This function is calling when the protected file is being initialized
  // when main program is not initialized yet

  ShellExecuteW(0, 'open', 'myexe.exe', nil, nil, SW_SHOW);
end;
Thanks sir
Post Reply