2017-04-25 14:41:48 +02:00
|
|
|
/*
|
|
|
|
|
* calma.h --
|
|
|
|
|
*
|
|
|
|
|
* This file defines things that are exported by the
|
|
|
|
|
* calma module to the rest of the world.
|
|
|
|
|
*
|
2020-05-23 23:13:14 +02:00
|
|
|
* *********************************************************************
|
|
|
|
|
* * 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. *
|
2017-04-25 14:41:48 +02:00
|
|
|
* *********************************************************************
|
|
|
|
|
*
|
|
|
|
|
* rcsid $Header: /usr/cvsroot/magic-8.0/calma/calma.h,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _CALMA_H
|
|
|
|
|
#define _CALMA_H
|
|
|
|
|
|
|
|
|
|
#include "utils/magic.h"
|
|
|
|
|
|
|
|
|
|
/* Externally visible variables */
|
|
|
|
|
extern bool CalmaSubcellPolygons;
|
2017-10-07 04:32:52 +02:00
|
|
|
extern bool CalmaSubcellPaths;
|
2017-04-25 14:41:48 +02:00
|
|
|
extern bool CalmaDoLabels;
|
2020-07-16 14:55:46 +02:00
|
|
|
extern bool CalmaDoLibrary;
|
2017-04-25 14:41:48 +02:00
|
|
|
extern bool CalmaDoLower;
|
2020-10-13 15:47:54 +02:00
|
|
|
extern bool CalmaAddendum;
|
2020-12-04 22:56:51 +01:00
|
|
|
extern bool CalmaNoDuplicates;
|
2020-12-15 20:52:30 +01:00
|
|
|
extern bool CalmaNoDateStamp;
|
2017-04-25 14:41:48 +02:00
|
|
|
extern bool CalmaMergeTiles;
|
|
|
|
|
extern bool CalmaFlattenArrays;
|
|
|
|
|
extern bool CalmaNoDRCCheck;
|
|
|
|
|
extern bool CalmaFlattenUses;
|
|
|
|
|
extern bool CalmaReadOnly;
|
|
|
|
|
extern bool CalmaContactArrays;
|
|
|
|
|
extern bool CalmaPostOrder;
|
|
|
|
|
|
|
|
|
|
/* Externally-visible procedures: */
|
|
|
|
|
extern bool CalmaWrite();
|
|
|
|
|
extern void CalmaReadFile();
|
|
|
|
|
extern void CalmaTechInit();
|
|
|
|
|
extern bool CalmaGenerateArray();
|
2019-07-23 14:45:42 +02:00
|
|
|
extern void CalmaReadError();
|
2017-04-25 14:41:48 +02:00
|
|
|
|
|
|
|
|
#endif /* _CALMA_H */
|