home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / lxprpas.zip / LXMIN2.C < prev    next >
Text File  |  1998-04-20  |  1KB  |  26 lines

  1. /*                                                                       *
  2.  *-----------------------------------------------------------------------*
  3.  * DISCLAIMER OF WARRANTIES:                                             *
  4.  *                                                                       *
  5.  *   The following enclosed code is sample code created by IBM           *
  6.  *   Corporation.  This sample code is not part of any standard IBM      *
  7.  *   product and is provided to you solely for the purpose of assisting  *
  8.  *   you in the development of your applications.  The code is provided  *
  9.  *   "AS IS", without warranty of any kind.  IBM shall not be liable     *
  10.  *   for any damages arising out of your use of the sample code, even    *
  11.  *   if they have been advised of the possibility of such damages.       *
  12.  *                                                                       *
  13.  *-----------------------------------------------------------------------*
  14.  *                                                                       */
  15. /****************************************/
  16. /*  LXMIN2.C - A minimal LPEX external  */
  17. /*             command in C or C++.     */
  18. /****************************************/
  19.  
  20. #include "lpexapi.h"                /* include function definitions */
  21.  
  22. int lxmain(uchr *parm)       /* lxmain() is the command entry point */
  23. {
  24.    return 0;                                          /* do nothing */
  25. }
  26.