home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / EXPERTS / PROJEXPL.DPR < prev    next >
Text File  |  1998-06-16  |  846b  |  29 lines

  1. library ProjExpl;
  2.  
  3. { Important note about DLL memory management: ShareMem must be the
  4.   first unit in your library's USES clause AND your project's (select
  5.   View-Project Source) USES clause if your DLL exports any procedures or
  6.   functions that pass strings as parameters or function results. This
  7.   applies to all strings passed to and from your DLL--even those that
  8.   are nested in records and classes. ShareMem is the interface unit to
  9.   the DELPHIMM.DLL shared memory manager, which must be deployed along
  10.   with your DLL. To avoid using DELPHIMM.DLL, pass string information
  11.   using PChar or ShortString parameters. }
  12.  
  13. uses
  14.   ShareMem,
  15.   SysUtils,
  16.   Classes,
  17.   ToolIntf,
  18.   EditIntf,
  19.   Exptintf,
  20.   VirtIntf,
  21.   PrjExpl in 'PrjExpl.pas' {ProjectExplorer};
  22.  
  23. exports
  24.   InitExpert name ExpertEntryPoint;
  25.  
  26. begin
  27. end.
  28.  
  29.