home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / OP2DEV.ZIP / DLLTEST.C < prev    next >
C/C++ Source or Header  |  1990-11-23  |  456b  |  23 lines

  1. //
  2. //  
  3. //
  4. #include <os2.h>
  5.  
  6. #include <stdio.h>
  7.  
  8. #include "os2bbs.h"
  9. #include "bbsapi.h"
  10.  
  11.  
  12. // APIENTRY _loadds TestProc(SYSCONFIG *, PORT_REC *, PORT_REC *);
  13. DSDLL TestProc(SYSCONFIG *, PORT_REC *, PORT_REC *);
  14.  
  15.  
  16. // APIENTRY _loadds TestProc(SYSCONFIG *syscon, PORT_REC *anchor, PORT_REC *unhand)
  17. DSDLL TestProc(SYSCONFIG *syscon, PORT_REC *anchor, PORT_REC *unhand)
  18. {
  19.    SerWrite("\n\rThis is a test!!\n\r",unhand);
  20.    return(1);
  21. }
  22.  
  23.