home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / sdu / ehnxnmp.def < prev    next >
Text File  |  1995-06-07  |  3KB  |  53 lines

  1. ; ******************************************************************************
  2. ; * SAMPLE PROGRAM: EHNXNMP   - Sample Name Mapping Exit for DFM/2.            *
  3. ; *                                                                            *
  4. ; * MODULE NAME:    EHNXNMP.DEF                                                *
  5. ; * DESCRIPTION: Module Definition File for the Name Mapping Exit EHNXNMP.DLL  *
  6. ; *                                                                            *
  7. ; *                                                                            *
  8. ; * DFM/2 (program no. 5648-020)                                               *
  9. ; * Version: 1.0                                                               *
  10. ; * Release: 1.0                                                               *
  11. ; *                                                                            *
  12. ; * Copyright (C) International Business Machines Corp., 1993.                 *
  13. ; *                                                                            *
  14. ; * DISCLAIMER OF WARRANTIES:                                                  *
  15. ; * The following [enclosed] code is sample code created by IBM                *
  16. ; * Corporation.  This sample code is not part of any standard IBM product     *
  17. ; * and is provided to you solely for the purpose of assisting you in the      *
  18. ; * development of your applications.  The code is provided "AS IS",           *
  19. ; * without warranty of any kind.  IBM shall not be liable for any damages     *
  20. ; * arising out of your use of the sample code, even if they have been         *
  21. ; * advised of the possibility of such damages.                                *
  22. ; *                                                                            *
  23. ; ******************************************************************************
  24. ; * CHANGE ACTIVITY                                                            *
  25. ; * Flag Reason      Level    Date   Origin    Comments                        *
  26. ; * -------------------------------------------------------------------------- *
  27. ; *                           930402 Mueller  : Initial Release                *
  28. ; * IBM Deutschland Entwicklung GmbH, Boeblingen, Germany        GMU at SDFVM1 *
  29. ; ******************************************************************************
  30.  
  31. ; ******************************************************************************
  32. ; * This file is part of the Name Mapping Exit sample program for DFM/2.       *
  33. ; * Module Definition File.                                                    *
  34. ; * For further description refer to the header of the file EHNXNMP.C          *
  35. ; ******************************************************************************
  36.  
  37. LIBRARY EHNXNMP INITINSTANCE
  38.  
  39. DESCRIPTION 'IBM DFM/2 EHNXNMP.DLL - Copyright (c) IBM Corporation 1993'
  40. STACKSIZE 10000
  41.  
  42. CODE LOADONCALL
  43.  
  44. DATA NONSHARED PRELOAD
  45.  
  46. SEGMENTS CODE32 ALIAS
  47.  
  48. EXPORTS
  49.      DFM_Map_to_Client
  50.      DFM_Map_to_Server
  51.  
  52. ; **** end of file *************************************************************
  53.