/**
@file uwmf_print.h
@brief Prototypes for functions for printing records from WMF files.
*/
/*
File: uwmf_print.h
Version: 0.0.2
Date: 14-FEB-2013
Author: David Mathog, Biology Division, Caltech
email: mathog@caltech.edu
Copyright: 2012 David Mathog and California Institute of Technology (Caltech)
*/
#ifndef _UWMF_PRINT_
#define _UWMF_PRINT_
#ifdef __cplusplus
extern "C" {
#endif
#include "uwmf.h"
#include "uemf_print.h"
//! \cond
/* prototypes for objects used in WMR records (other than those defined in uemf_print.h) */
void brush_print(U_BRUSH b);
void font_print(const char *font);
void region_print(const char *region);
void bitmap16_print(U_BITMAP16 b);
/* prototypes for WMF records */
void U_WMRNOTIMPLEMENTED_print(const char *contents);
//! \endcond
#ifdef __cplusplus
}
#endif
#endif /* _UWMF_PRINT_ */