home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warphead.zip / H / XSESSION.H < prev   
C/C++ Source or Header  |  1997-02-28  |  3KB  |  69 lines

  1. /*====START_GENERATED_PROLOG======================================
  2.  */
  3. /*
  4.  *   COMPONENT_NAME: odconfig
  5.  *
  6.  *   CLASSES: none
  7.  *
  8.  *   ORIGINS: 82,27
  9.  *
  10.  *
  11.  *   (C) COPYRIGHT International Business Machines Corp. 1995,1996
  12.  *   All Rights Reserved
  13.  *   Licensed Materials - Property of IBM
  14.  *   US Government Users Restricted Rights - Use, duplication or
  15.  *   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  16.  *       
  17.  *   IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18.  *   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  19.  *   PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  20.  *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  21.  *   USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  22.  *   OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  23.  *   OR PERFORMANCE OF THIS SOFTWARE.
  24.  */
  25. /*====END_GENERATED_PROLOG========================================
  26.  */
  27. /* @(#) 1.3 com/src/registry/xsession.h, odconfig, od96os2, odos29646d 10/31/96 12:45:31 [11/15/96 15:49:47] */
  28. /* (use tabs = 2 to view this file correctly) */
  29. /*---------------------------------------------------------------------------*
  30.  |                                                                           |
  31.  |                      <<<        XSession.h        >>>                     |
  32.  |                                                                           |
  33.  |           Example Container Manager Special Handlers Interfaces           |
  34.  |                                                                           |
  35.  |                               Ira L. Ruben                                |
  36.  |                                  2/5/92                                   |
  37.  |                                                                           |
  38.  |                    Copyright Apple Computer, Inc. 1992                    |
  39.  |                           All rights reserved.                            |
  40.  |                                                                           |
  41.  *---------------------------------------------------------------------------*
  42.  
  43.  This file represents the handler header file for the example handler file 
  44.  ExampleSessionHandlers.c.  That file contains complete documentation and an example on how
  45.  to write a set of required session handlers and a metahandler for the Container Manager
  46.  API.
  47.  
  48.  The only visible routine is the metahandler you need to pass to CMStartSession().  See
  49.         XSession.c        for complete documentation.
  50. */
  51.  
  52.  
  53. #ifndef __EXAMPLESESSIONHANDLERS__
  54. #define __EXAMPLESESSIONHANDLERS__
  55.  
  56. #include "CMAPI.h" 
  57.  
  58.                                   CM_CFUNCTION
  59.   
  60. CMHandlerAddr CM_FIXEDARGS regSessionRoutinesMetahandler(CMType targetType, CMconst_CMGlobalName operationType);
  61.   /*
  62.   Metahandler proc for determining the addresses of the session handler operation routines.
  63.   Pass the address of this routine to a CMStartSession() call.
  64.   */
  65.  
  66.                                 CM_END_CFUNCTIONS
  67.  
  68. #endif
  69.