home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap33 / simpdll / dlltestu.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-20  |  216b  |  16 lines

  1. unit DLLTestu;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: SIMPDLL }
  5.  
  6. interface
  7.  
  8. function TestTen: Integer;
  9.  
  10. implementation
  11.  
  12. function TestTen; external 'DLLTEST' index 1;
  13.  
  14. end.
  15.  
  16.