[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
2.1 Code prerequisites
To use libgimpprint with a program, several steps must be taken:
- Include the master libgimpprint header
<gimp-print/gimp-print.h>.
- Call
stp_init()
. - Link with libgimpprint.
The following is a short example program. It does not do anything useful, but it does everything required to link with libgimpprint and call other functions from libgimpprint.
#include <gimp-print/gimp-print.h> int main (int argc, char *argv[]) { stp_init (); return (0); } |