home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / what's new / sample code / overview / moreisbetter / mib-libraries / moremenus / moremenus.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-11  |  1.5 KB  |  53 lines

  1. /*
  2.     File:        MoreMenus.h
  3.  
  4.     Contains:    
  5.  
  6.     Written by:    Pete Gontier
  7.  
  8.     Copyright:    Copyright © 1998 Apple Computer, Inc. All Rights Reserved.
  9.  
  10.                 You may incorporate this Apple sample source code into your program(s) without
  11.                 restriction. This Apple sample source code has been provided "AS IS" and the
  12.                 responsibility for its operation is yours. You are not permitted to redistribute
  13.                 this Apple sample source code as "Apple sample source code" after having made
  14.                 changes. If you're going to re-distribute the source, we require that you make
  15.                 it clear in the source that the code was descended from Apple sample source
  16.                 code, but that you've made changes.
  17.  
  18.     Change History (most recent first):
  19.  
  20.          <2>    11/11/98    PCG     fix header
  21.          <1>    11/11/98    PCG     re-org at behest of Quinn
  22.  
  23.     Old Change History (most recent first):
  24.  
  25.          <4>    10/11/98    Quinn   Convert "MorePrefix.h" to "MoreSetup.h".
  26.          <3>      9/9/98    PCG     re-work import and export pragmas
  27.          <2>     7/24/98    PCG        coddle linker (C++, CFM-68K)
  28.          <1>     6/16/98    PCG     initial checkin
  29. */
  30.  
  31. #pragma once
  32.  
  33. #include "MoreSetup.h"
  34.  
  35. #include <Menus.h>
  36.  
  37. #include "MenuKeyGlyphs.h"
  38.  
  39. #ifdef __cplusplus
  40.     extern "C" {
  41. #endif
  42.  
  43. #pragma import on // for clients
  44. #pragma export on // for building a library
  45.  
  46.     // function prototypes would go here
  47.  
  48. #pragma import reset // for clients
  49. #pragma export reset // for building a library
  50.  
  51. #ifdef __cplusplus
  52.     }
  53. #endif