supermario/bin/MPW-3.2.3/Interfaces/CIncludes/Scrap.h
2019-06-29 22:17:03 +08:00

54 lines
1013 B
C

/************************************************************
Created: Sunday, January 6, 1991 at 9:52 PM
Scrap.h
C Interface to the Macintosh Libraries
Copyright Apple Computer, Inc. 1985-1989
All rights reserved
************************************************************/
#ifndef __SCRAP__
#define __SCRAP__
#ifndef __TYPES__
#include <Types.h>
#endif
struct ScrapStuff {
long scrapSize;
Handle scrapHandle;
short scrapCount;
short scrapState;
StringPtr scrapName;
};
typedef struct ScrapStuff ScrapStuff;
typedef ScrapStuff *PScrapStuff;
#ifdef __cplusplus
extern "C" {
#endif
pascal PScrapStuff InfoScrap(void)
= 0xA9F9;
pascal long UnloadScrap(void)
= 0xA9FA;
pascal long LoadScrap(void)
= 0xA9FB;
pascal long GetScrap(Handle hDest,ResType theType,long *offset)
= 0xA9FD;
pascal long ZeroScrap(void)
= 0xA9FC;
pascal long PutScrap(long length,ResType theType,Ptr source)
= 0xA9FE;
#ifdef __cplusplus
}
#endif
#endif