home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
machack
/
Hacks95
/
Closure.sit
/
Closure
/
Sources
/
PhotoshopHeaders
/
ExportUtilities.h
< prev
next >
Wrap
Text File
|
1995-06-24
|
953b
|
42 lines
/*
File: ExportUtilites.h
Copyright 1994-95 by Adobe Systems, Inc. All rights reserved.
Utilities for Export modules.
*/
#ifndef __ExportUtilities__
#define __ExportUtilities__
#include "PITypes.h"
#include "PIGeneral.h"
#include "PIExport.h"
/*****************************************************************************/
/* The region of the image being exported (an area and a range of planes). */
typedef struct ExportRegion
{
Rect rect;
int16 loPlane;
int16 hiPlane;
}
ExportRegion;
/*****************************************************************************/
OSErr FetchData (ExportRecord *stuff /* in/out */,
ExportRegion *region /* in */,
void *data /* out */,
int32 *rowBytes /* out */);
/*****************************************************************************/
void MarkExportFinished (ExportRecord *stuff);
/*****************************************************************************/
#endif