magic/router/routerInt.h

50 lines
1.8 KiB
C
Raw Normal View History

/*
* routerInt.h -
*
* Internal definitions for Router module.
*
* *********************************************************************
* * Copyright (C) 1985, 1990 Regents of the University of California. *
* * Permission to use, copy, modify, and distribute this *
* * software and its documentation for any purpose and without *
* * fee is hereby granted, provided that the above copyright *
* * notice appear in all copies. The University of California *
* * makes no representations about the suitability of this *
* * software for any purpose. It is provided "as is" without *
* * express or implied warranty. Export of this software outside *
* * of the United States of America may require an export license. *
* *********************************************************************
*
* rcsid="$Header: /usr/cvsroot/magic-8.0/router/routerInt.h,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $"
*/
/*
* Declarations local to the router module,
* but global to all source files within the router module.
*/
#ifndef _MAGIC__ROUTER__ROUTERINT_H
#define _MAGIC__ROUTER__ROUTERINT_H
extern int rtrTarget; /* Via minimization, target type */
extern int rtrReplace; /* Via minimization, replacement type */
extern int rtrDelta; /* Change in layer width */
/* C99 compat */
extern void RtrPinsFixStems();
extern int RtrViaMinimize();
extern int rtrPinArrayFixStems();
extern int rtrPinArrayInit();
extern int rtrPinArrayLink();
extern int rtrSidePassToClient();
extern int rtrSideProcess();
extern int rtrXDist();
extern int rtrYDist();
extern int rtrStemContactLine();
extern int rtrStemTypes();
extern int rtrSrTraverse();
extern int rtrListVia();
extern void rtrListArea();
#endif /* _MAGIC__ROUTER__ROUTERINT_H */