From 1fd361a1ea06e44286c213ca1f814f49306fdc43 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 19 Aug 2006 03:12:28 +0000 Subject: Create Subversion repository git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- other/pamx/window.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 other/pamx/window.h (limited to 'other/pamx/window.h') diff --git a/other/pamx/window.h b/other/pamx/window.h new file mode 100644 index 00000000..2efc54b5 --- /dev/null +++ b/other/pamx/window.h @@ -0,0 +1,38 @@ +#ifndef WINDOW_H_INCLUDED +#define WINDOW_H_INCLUDED + +#include + +#include "pm_c_util.h" + +struct Image; +struct viewer; +typedef struct viewer viewer; + +int +visualClassFromName(const char * const name); + +void +createViewer(viewer ** const viewerPP, + Display * const dispP, + int const scrn, + const char * const geometryString, + bool const fullscreen); + +void +destroyViewer(viewer * const viewerP); + +void +displayInViewer(viewer * const viewerP, + struct Image * const imageP, + bool const install, + bool const userWantsPrivateCmap, + bool const fit, + bool const userWantsPixmap, + bool const visualSpec, + unsigned int const visualClass, + const char * const title, + bool const verbose, + int * const retvalP); + +#endif -- cgit 1.4.1