mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
474 B
22 lines
474 B
/**************************************************************************\
|
|
* FILE: jumbotool.h
|
|
*
|
|
* Lists functions Zilla exports to its tools that are related to jumbo but nothing else.
|
|
\**************************************************************************/
|
|
|
|
#ifndef JUMBOTOOL_H
|
|
#define JUMBOTOOL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Featurize ink
|
|
int JumboFeaturize(GLYPH **glyph, BIGPRIM *rgprim);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif // JUMBOTOOL_H
|
|
|