mac-rom/Toolbox/DataAccessMgr/DatabaseAccessPriv.r
Elliot Nunn 4325cdcc78 Bring in CubeE sources
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.
2017-12-26 09:52:23 +08:00

37 lines
965 B
R

/*
File: DatabaseAccessPriv.r
Contains: Private resource structures for the Database Access Manager.
Contains definitions for the following resource types:
'rtt#' List of result handlers and the ids
of the 'proc' resources they live in.
Written by: Jeff Miller
Copyright: © 1990 by Apple Computer, Inc., all rights reserved.
Change History (most recent first):
<2> 3/13/90 JSM Update comments to reflect reality.
<1> 2/23/90 JSM First checked in.
To Do:
*/
/* 'rtt#' - List of result handlers */
type 'rtt#' {
/* array of IDs of 'proc' resources containing handlers */
integer = $$CountOf(ResultHandlerArray); /* array size */
wide array ResultHandlerArray {
integer; /* id of 'proc' resource */
/* array of DBTypes specifying what handlers are in this 'proc' */
integer = $$CountOf(TypeArray); /* array size */
wide array TypeArray {
literal longint; /* DBType of handler */
};
};
};