LuaEditSys.dpr 935 B

12345678910111213141516171819202122232425
  1. library LuaEditSys;
  2. { Important note about DLL memory management: ShareMem must be the
  3. first unit in your library's USES clause AND your project's (select
  4. Project-View Source) USES clause if your DLL exports any procedures or
  5. functions that pass strings as parameters or function results. This
  6. applies to all strings passed to and from your DLL--even those that
  7. are nested in records and classes. ShareMem is the interface unit to
  8. the BORLNDMM.DLL shared memory manager, which must be deployed along
  9. with your DLL. To avoid using BORLNDMM.DLL, pass string information
  10. using PChar or ShortString parameters. }
  11. uses
  12. SysUtils,
  13. Classes,
  14. LuaEditSysUtils in 'LuaEditSysUtils.pas';
  15. {$R *.res}
  16. exports GetFileLastTimeModified, GetFileReadOnlyAttr, ToggleFileReadOnlyAttr, GetFileVersion, GetOSInfo,
  17. SetPrivilege, WinExit, GetFileSizeStr, BrowseURL, GetRunningProcesses, ParamStrEx, ParamCountEx;
  18. begin
  19. end.