Retired Document
Important: This sample code may not represent best practices for current development. The project may use deprecated symbols and illustrate technologies and techniques that are no longer recommended.
SectionReport/Version.h
/* |
** File: Version.h |
** |
** Description: Version information for the SectionReport. |
** |
** Version: 1.0 |
** |
** Copyright 1999 Apple Computer. All rights reserved. |
** |
** You may incorporate this sample code into your applications without |
** restriction, though the sample code has been provided "AS IS" and the |
** responsibility for its operation is 100% yours. However, what you are |
** not permitted to do is to redistribute the source as "ABC Sample Code" |
** after having made changes. If you're going to re-distribute the source, |
** we require that you make it clear in the source that the code was |
** descended from Apple Sample Code, but that you've made changes. |
** |
*/ |
#ifndef __VERSION__ |
#define __VERSION__ |
#ifdef __cplusplus |
extern "C" { |
#endif |
/* 'vers' resource definitions */ |
#if rez |
#define kStageDevelopment development |
#define kStageAlpha alpha |
#define kStageBeta beta |
#define kStageFinal final |
#else |
#define kStageDevelopment 0x20 |
#define kStageAlpha 0x40 |
#define kStageBeta 0x60 |
#define kStageFinal 0x80 |
#endif |
#define kMajorRev 0x1 |
#define kMinorRev 0x0 |
#define kReleaseStage kStageFinal |
#define kNonRelease 0 |
#define kShortVersStr "1.0" |
#define kqDebug "Db" |
#define kqSym "Sm" |
#define kqNames "Nm" |
#ifdef __cplusplus |
} |
#endif |
#endif // __VERSION__ |
Copyright © 2003 Apple Computer, Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2003-03-26