Guest User

Untitled

a guest
Jan 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.99 KB | None | 0 0
  1. library DebugEventLog;
  2.  
  3. {$MODE Delphi}
  4.  
  5. { Important note about DLL memory management: ShareMem must be the
  6.   first unit in your library's USES clause AND your project's (select
  7.   Project-View Source) USES clause if your DLL exports any procedures or
  8.   functions that pass strings as parameters or function results. This
  9.   applies to all strings passed to and from your DLL--even those that
  10.   are nested in records and classes. ShareMem is the interface unit to
  11.   the BORLNDMM.DLL shared memory manager, which must be deployed along
  12.   with your DLL. To avoid using BORLNDMM.DLL, pass string information
  13.   using PChar or ShortString parameters. }
  14.  
  15. uses
  16.   interfaces,
  17.   SysUtils,
  18.   Classes,
  19.   exportimplementation in 'exportimplementation.pas',
  20.   frmEventLogUnit in 'frmEventLogUnit.pas' {frmEventLog},
  21.   cepluginsdk in '..\..\cepluginsdk.pas';
  22.  
  23. //i'm just reusing this unit (i'm lazy)
  24.  
  25. {$R *.res}
  26.  
  27. exports GetVersion;
  28. exports InitializePlugin;
  29. exports DisablePlugin;
  30.  
  31. begin
  32. end.
Add Comment
Please, Sign In to add comment