solvespace/solvespace.h
Jonathan Westhues 67139236fc This is my initial checkin for solvespace, a second attempt at
constraint solver drawing. I've started work on the user inteface,
which will be based around two windows: one with the graphical
sketch, and one command line. I've started to implement the command
line, no other work.

[git-p4: depot-paths = "//depot/solvespace/": change = 1652]
2008-03-25 02:02:13 -08:00

24 lines
328 B
C

#ifndef __SOLVESPACE_H
#define __SOLVESPACE_H
#include <stdlib.h>
#include <string.h>
#include "dsc.h"
#include "ui.h"
// Debugging functions
#define oops() exit(-1)
void dbp(char *str, ...);
typedef struct {
TextWindow TW;
GraphicsWindow GW;
void Init(void);
} SolveSpace;
extern SolveSpace SS;
#endif