1 /*
2  * selInt.h --
3  *
4  * Contains definitions that are private to the implementation of
5  * the select module.  No other module should need anything in here.
6  *
7  *     *********************************************************************
8  *     * Copyright (C) 1985, 1990 Regents of the University of California. *
9  *     * Permission to use, copy, modify, and distribute this              *
10  *     * software and its documentation for any purpose and without        *
11  *     * fee is hereby granted, provided that the above copyright          *
12  *     * notice appear in all copies.  The University of California        *
13  *     * makes no representations about the suitability of this            *
14  *     * software for any purpose.  It is provided "as is" without         *
15  *     * express or implied warranty.  Export of this software outside     *
16  *     * of the United States of America may require an export license.    *
17  *     *********************************************************************
18  *
19  *
20  * rcsid="$Header: /usr/cvsroot/magic-8.0/select/selInt.h,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $"
21  */
22 
23 #ifndef _SELINT_H
24 #define _SELINT_H
25 
26 #include "utils/magic.h"
27 #include "database/database.h"
28 
29 /* Procedures, variables, and records that are shared between
30  * files:
31  */
32 
33 extern int SelRedisplay();
34 extern void SelSetDisplay();
35 extern void SelUndoInit();
36 extern void SelRememberForUndo();
37 extern void SelectAndCopy2();
38 
39 extern CellUse *Select2Use;
40 extern CellDef *Select2Def;
41 
42 extern CellUse *selectLastUse;
43 
44 #endif /* _SELINT_H */
45