24 lines
687 B
C
24 lines
687 B
C
/*--------------------------------------------------------------*/
|
|
/* oa.h -- */
|
|
/* OpenAccess database support for magic */
|
|
/* */
|
|
/* Written by R. Timothy Edwards 4/22/04 */
|
|
/* Open Circuit Design, Inc. for */
|
|
/* MultiGiG, Inc., Scotts Valley, CA */
|
|
/*--------------------------------------------------------------*/
|
|
|
|
#ifndef _MAGIC__OA__OA_H
|
|
#define _MAGIC__OA__OA_H
|
|
|
|
/* Header file is wrapped in ifdef so include statements don't */
|
|
/* need to be. */
|
|
#ifdef OPENACCESS
|
|
|
|
/* Internally defined forward declarations */
|
|
extern int OACellSearch();
|
|
extern int oaTreeCellSrFunc(); /* see DBcellsrch.c */
|
|
|
|
#endif /* OPENACCESS */
|
|
|
|
#endif /* _MAGIC__OA__OA_H */
|