comparison dw.h @ 1887:09860ba329a4

Divided thread initialization and deinitialization into separate exported functions so they can be accessed from language bindings.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 09 Sep 2013 19:18:36 +0000
parents 3f571ad9b92e
children c6b47f3db988
comparison
equal deleted inserted replaced
1886:f7d408a47752 1887:09860ba329a4
1768 HPRINT API dw_print_new(char *jobname, unsigned long flags, unsigned int pages, void *drawfunc, void *drawdata); 1768 HPRINT API dw_print_new(char *jobname, unsigned long flags, unsigned int pages, void *drawfunc, void *drawdata);
1769 int API dw_print_run(HPRINT print, unsigned long flags); 1769 int API dw_print_run(HPRINT print, unsigned long flags);
1770 void API dw_print_cancel(HPRINT print); 1770 void API dw_print_cancel(HPRINT print);
1771 wchar_t * API dw_utf8_to_wchar(char *utf8string); 1771 wchar_t * API dw_utf8_to_wchar(char *utf8string);
1772 char * API dw_wchar_to_utf8(wchar_t *wstring); 1772 char * API dw_wchar_to_utf8(wchar_t *wstring);
1773 1773 /* Exported for language bindings */
1774 #endif 1774 void API _dw_init_thread(void);
1775 void API _dw_deinit_thread(void);
1776
1777 #endif