home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: WPS_PM / WPS_PM.zip / xf083ses.zip / xfldr046.c < prev    next >
C/C++ Source or Header  |  1998-10-13  |  1KB  |  33 lines

  1. /*
  2.  * xfldr001.c:
  3.  *      This file contains some dummy code for the XFolder
  4.  *      National Language Support DLL. It really does nothing,
  5.  *      but every DLL must contain some code, so we just
  6.  *      write a dumb function.
  7.  *
  8.  *      Do not change this file.
  9.  *
  10.  *      Copyright (C) 1997-98 Ulrich Möller.
  11.  *      This file is part of the XFolder source package.
  12.  *      XFolder is free software; you can redistribute it and/or modify
  13.  *      it under the terms of the GNU General Public License as published
  14.  *      by the Free Software Foundation, in version 2 as it comes in the
  15.  *      "COPYING" file of the XFolder main distribution.
  16.  *      This program is distributed in the hope that it will be useful,
  17.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *      GNU General Public License for more details.
  20.  */
  21.  
  22.  
  23. #include <os2.h>
  24.  
  25. int ARCTUSED = 1;
  26.  
  27. PSZ EXPENTRY ReturnLanguage()
  28. {
  29.     return (NULL);
  30. }
  31.  
  32.  
  33.