2017-04-25 14:41:48 +02:00
|
|
|
/*--------------------------------------------------------------*/
|
|
|
|
|
/* 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 */
|
|
|
|
|
/*--------------------------------------------------------------*/
|
|
|
|
|
|
2024-10-16 08:38:41 +02:00
|
|
|
#ifndef _MAGIC__OA__OA_H
|
|
|
|
|
#define _MAGIC__OA__OA_H
|
2017-04-25 14:41:48 +02:00
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
|
|
2024-10-16 08:38:41 +02:00
|
|
|
#endif /* _MAGIC__OA__OA_H */
|