home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / CMD / SVGAINST / SERVICE.H < prev    next >
Text File  |  1995-04-14  |  4KB  |  55 lines

  1. /*DDK*************************************************************************/
  2. /*                                                                           */
  3. /* COPYRIGHT    Copyright (C) 1995 IBM Corporation                           */
  4. /*                                                                           */
  5. /*    The following IBM OS/2 WARP source code is provided to you solely for  */
  6. /*    the purpose of assisting you in your development of OS/2 WARP device   */
  7. /*    drivers. You may use this code in accordance with the IBM License      */
  8. /*    Agreement provided in the IBM Device Driver Source Kit for OS/2. This  */
  9. /*    Copyright statement may not be removed.                                */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. /* SCCSID = %%s %%s %%s */
  14.  
  15. /****************************************************************************/
  16. /*                                                                          */
  17. /*                                                                          */
  18. /*                                                                          */
  19. /****************************************************************************/
  20.  
  21. /*********************************************************************/
  22. /*                                                                   */
  23. /*  SOURCE FILE NAME: service.h                                      */
  24. /*                                                                   */
  25. /*  DESCRIPTIVE NAME: Include file for the service.c file            */
  26. /*                                                                   */
  27. /*  FUNCTION:                                                        */
  28. /*                                                                   */
  29. /*                                                                   */
  30. /*  ENTRY POINT: None                                                */
  31. /*                                                                   */
  32. /*  PARAMETERS: None                                                 */
  33. /*   Input:                                                          */
  34. /*   Output:                                                         */
  35. /*                                                                   */
  36. /*  REFERENCES: None                                                 */
  37. /*                                                                   */
  38. /*********************************************************************/
  39. APIRET APIENTRY SerAddLink(PDSPINSTL_CHAIN *ppNewElement,
  40.                            BOOL  fCreateFlag,
  41.                            ULONG ulPosition,
  42.                            PDSPINSTL_CHAIN pExistingChain);
  43. APIRET APIENTRY SerDeleteLink(PDSPINSTL_CHAIN pElementDelete);
  44. APIRET APIENTRY SerNextElement(PDSPINSTL_CHAIN *ppDspInstlNext,
  45.                                ULONG ulPostionFlag,
  46.                                PDSPINSTL_CHAIN pDspInstlChain);
  47. APIRET APIENTRY SerGetResponseFile(PSZ pszParameter,
  48.                                    PULONG pulBufferSize,
  49.                                    PSZ pszValue,
  50.                                    PULONG pulValueBufferSize,
  51.                                    ULONG ulOccurence,
  52.                                    PULONG pulNumOccurrences);
  53. APIRET APIENTRY SaveList(PDSPINSTL_CHAIN *ppDspNewElement,
  54.                               PDSPINSTL_CHAIN pDspInstlCurrent);
  55.