mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-09 02:30:13 +00:00
4325cdcc78
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
/*
|
|
File: GenericInterface.h
|
|
|
|
Written by: Mark Appleman
|
|
|
|
Copyright: © 1991-1992 by Apple Computer, Inc., all rights reserved.
|
|
|
|
Change History (most recent first):
|
|
|
|
<SM2> 5/2/92 kc Roll in Horror. Comments follow:
|
|
<H2> 3/6/92 AL Upgraded to CTE v2.1 (copied over from XXTest project).
|
|
|
|
*/
|
|
#ifndef _GenericInterface_
|
|
#define _GenericInterface_
|
|
//
|
|
// GenericInterface.h
|
|
//
|
|
|
|
#include "CTETypes.h"
|
|
#include "ExecuteDTM.h"
|
|
#include <Files.h>
|
|
|
|
|
|
|
|
int GI_InitInterface(void *globs, long size) ;
|
|
int GI_ExecuteDTM(CTEInfo *kernelInfo,
|
|
CTEDTMExecutionOptions *executionOptions,
|
|
CTETestInfo *testInfo,
|
|
CTESubtestInfo *subtestInfo,
|
|
CTEDTMExecutionResults *executionResults) ;
|
|
|
|
// Generic Interface functions that manage the CTE Workspace.
|
|
void *GI_AllocPermMem(CTEGlobals *globs, int size) ;
|
|
void *GI_AllocTempMem(CTEGlobals *globs, int size) ;
|
|
void GI_FreeTempMem(CTEGlobals *globs) ;
|
|
|
|
// Generic Interface functions that allow access the the CTE globals.
|
|
NumVersion *GI_GetVersion(CTEGlobals *globs) ;
|
|
char *GI_GetCommentary(CTEGlobals *globs) ;
|
|
|
|
CTEDTMExecutionOptions GI_GetDefaultExecutionOptions(void) ;
|
|
|
|
#endif _GenericInterface_ |