home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / COMPILER / SAMPLE03 / SAMPLE3R.DEF < prev   
Text File  |  1993-03-15  |  3KB  |  56 lines

  1. ;******************************************************************************
  2. ;*                                                                            *
  3. ;* Sample Program 03 : Module definition file for SAMPLE03.DLL                *
  4. ;*                                                                            *
  5. ;* COPYRIGHT:                                                                 *
  6. ;* ----------                                                                 *
  7. ;* Copyright (C) International Business Machines Corp., 1991, 1993.           *
  8. ;*                                                                            *
  9. ;* DISCLAIMER OF WARRANTIES:                                                  *
  10. ;* -------------------------                                                  *
  11. ;* The following [enclosed] code is sample code created by IBM                *
  12. ;* Corporation.  This sample code is not part of any standard IBM product     *
  13. ;* and is provided to you solely for the purpose of assisting you in the      *
  14. ;* development of your applications.  The code is provided "AS IS",           *
  15. ;* without warranty of any kind.  IBM shall not be liable for any damages     *
  16. ;* arising out of your use of the sample code, even if they have been         *
  17. ;* advised of the possibility of such damages.                                *
  18. ;*                                                                            *
  19. ;******************************************************************************
  20. ;
  21. LIBRARY SAMPLE03 INITINSTANCE TERMINSTANCE
  22. PROTMODE
  23. DATA MULTIPLE NONSHARED READWRITE LOADONCALL
  24. CODE LOADONCALL
  25. EXPORTS
  26.    nSize     ; array size
  27.    pArray    ; pointer to base of array of ints
  28.    nSwaps    ; number of swaps required to sort the array
  29.    nCompares ; number of comparisons required to sort the array
  30.    list      ; array listing function
  31.    bubble    ; bubble sort function
  32. ;  selection   selection sort function
  33.    insertion ; insertion sort function
  34.              ; CRT symbols required by EXE
  35.    _printfieee
  36.    srand
  37.    _critlib_except                            ; ****
  38.    _DosSelToFlat                              ; ****
  39.    _DosFlatToSel                              ; ****
  40.    _environ                                   ; ****
  41.    _CRT_init                                  ; ****
  42.    __ctordtorInit                             ; ****
  43.    _EXE_Exception                             ; ****
  44.    _Exception                                 ; ****
  45.    _PrintErrMsg                               ; ****
  46.    _exception_procinit                        ; ****
  47.    _exception_dllinit                         ; ****
  48.    _matherr                                   ; ****
  49.    _terminate                                 ; ****
  50.    __ctordtorTerm                             ; ****
  51.    exit                                       ; ****
  52.    free                                       ; ****
  53.    malloc                                     ; ****
  54.    strdup                                     ; ****
  55.    strpbrk                                    ; ****
  56.