... still programming ...

Added minwidth and minheight to design structure
This commit is contained in:
Thomas Jensen 1999-03-31 17:34:43 +00:00
parent 3ac253d3b8
commit 9285b8418d

View File

@ -3,7 +3,7 @@
* Date created: March 18, 1999 (Thursday, 15:09h)
* Author: Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: boxes.h,v 1.2 1999/03/19 17:51:19 tsjensen Exp tsjensen $
* Version: $Id: boxes.h,v 1.3 1999/03/30 09:36:58 tsjensen Exp tsjensen $
* Language: ANSI C
* Purpose: Project-wide globals and data structures
* Remarks: ---
@ -11,6 +11,10 @@
* Revision History:
*
* $Log: boxes.h,v $
* Revision 1.3 1999/03/30 09:36:58 tsjensen
* ... still programming ...
* It drew a correct box for the first time!
*
* Revision 1.2 1999/03/19 17:51:19 tsjensen
* ... still programming ...
*
@ -23,7 +27,7 @@
#ifndef BOXES_H
#define BOXES_H
#ident "$Id: boxes.h,v 1.2 1999/03/19 17:51:19 tsjensen Exp tsjensen $"
#ident "$Id: boxes.h,v 1.3 1999/03/30 09:36:58 tsjensen Exp tsjensen $"
#define PROJECT "boxes" /* name of program */
#define VERSION "1.0" /* current release of project */
@ -100,6 +104,8 @@ typedef struct {
char *revision;
char *revdate;
char *sample;
size_t minwidth;
size_t minheight;
sentry_t shape[ANZ_SHAPES];
int offset[ANZ_OFFSETS];
} design_t;