home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DIVERSEN / EDITH13 / SAMPLE.PAS < prev    next >
Pascal/Delphi Source File  |  1995-03-11  |  265b  |  16 lines

  1. library sample;
  2.  
  3. uses WObjects, WinTypes, WinProcs, misc;
  4.  
  5. procedure func1(i: integer); export;
  6. begin
  7.   MyMessageBox(0,'The number is '+numstr(i,1),
  8.           'Sample.DLL', mb_OK + mb_IconExclamation);
  9. end;
  10.  
  11. exports
  12.   func1 name 'FUNC1';
  13.  
  14. begin
  15. end.
  16.