MusicKit  0.0.0
MKPatchEntry.h
00001 /*
00002   $Id$
00003   Defined In: The MusicKit
00004 
00005   Description:
00006 
00007   Original Author: Leigh M. Smith <leigh@tomandandy.com>
00008 
00009   Copyright (c) 1999 tomandandy music inc.
00010 
00011   Permission is granted to use and modify this code for commercial and non-commercial
00012   purposes so long as the author attribution and this copyright message remains intact
00013   and accompanies all derived code.
00014 */
00015 /*
00016   $Log$
00017   Revision 1.1  2000/06/09 17:17:49  leigh
00018   Added MKPatchEntry replacing deprecated Storage class
00019 
00020 */
00021 #import <Foundation/Foundation.h>
00022 
00023 @interface MKPatchEntry : NSObject
00024 {
00025     id entryClass;            /* Which class. */
00026     unsigned short type;      /*  */
00027     unsigned short segment;   /* Used only for data memory. MKOrchMemSegment. */
00028     unsigned length;          /* Length of data. */
00029 }
00030 
00031 - initWithClass: (id) entryClass type: (unsigned short) aType segment: (unsigned short) segment length: (unsigned) len;
00032 - initWithClass: (id) entryClass type: (unsigned short) aType segment: (unsigned short) segment;
00033 - initWithClass: (id) entryClass type: (unsigned short) aType;
00034 - (unsigned short) type;
00035 - (unsigned short) segment;
00036 - (unsigned) length;
00037 - entryClass;
00038 @end