The last use of this was removed in
580fa88477fa59aca01e405c986c686ceee21b5f.
But its definition was retained in this header as removing it was considered an
API break not worth causing. The upcoming release is projected to bump the major
version number, so we can now remove it.
- **Breaking**: Using Graphviz as a library on Windows now requires the `GVDLL`
symbol to be set to ensure correct linking.
+- **Breaking**: Graphviz headers no longer define the constant `MAXSHORT`. A
+ drop-in replacement is `SHRT_MAX` in the C standard library’s limits.h.
- **Breaking**: Graphviz headers no longer (re-)define the C constants `INT_MIN`
and `INT_MAX`. Replacements can be found in the C standard library’s limits.h.
- The Ming plugin that produced Shockwave files has been removed. This format
#define SGN(a) (((a)<0)? -1 : 1)
#define CMP(a,b) (((a)<(b)) ? -1 : (((a)>(b)) ? 1 : 0))
-#ifndef MAXSHORT
-#define MAXSHORT (0x7fff)
-#endif
-
#ifndef MAXDOUBLE
#define MAXDOUBLE 1.7976931348623157e+308
#endif