home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / delphi / TPOP3 / POP3MAIL.DPR < prev    next >
Encoding:
Text File  |  1996-04-26  |  256 b   |  15 lines

  1. program Pop3mail;
  2.  
  3. uses
  4.   Forms,
  5.   Pop3main in 'POP3MAIN.PAS' {POP3Form},
  6.   Pop3su in 'POP3SU.PAS' {SetupDlg},
  7.   Msgdcd in 'MSGDCD.PAS' {MsgProcessor};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TPOP3Form, POP3Form);
  13.   Application.Run;
  14. end.
  15.