home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / unexpect.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-16  |  1.0 KB  |  27 lines

  1. #ifndef __unexpected_h
  2.    #define __unexpected_h
  3.  
  4.    /********************************************************************/
  5.    /*  <unexpect.h> header file                                        */
  6.    /*                                                                  */
  7.    /*  VisualAge for C++ for Windows, Version 3.5                      */
  8.    /*    Licensed Material - Property of IBM                           */
  9.    /*                                                                  */
  10.    /*  5801-ARR and Other Materials                                    */
  11.    /*                                                                  */
  12.    /*  (c) Copyright IBM Corp 1991, 1996. All rights reserved.         */
  13.    /*                                                                  */
  14.    /********************************************************************/
  15.  
  16.    typedef void (*_PFV)();
  17.  
  18.    _PFV set_unexpected (_PFV);
  19.  
  20.    #ifdef __MULTI__
  21.       _PFV _set_mt_unexpected(_PFV);
  22.    #endif
  23.  
  24.    void unexpected();
  25.  
  26. #endif /* __unexpected_h */
  27.