|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T t
Length: 1537 (0x601) Types: TextFile Names: »template.c«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« └─⟦d3ac74d73⟧ └─⟦this⟧ »isode-5.0/others/quipu/photo/template.c«
/* template.c - template for display processes */ #ifndef lint static char *rcsid = "$Header: /f/osi/others/quipu/photo/RCS/template.c,v 6.0 89/03/18 23:34:09 mrose Rel $"; #endif /* * $Header: /f/osi/others/quipu/photo/RCS/template.c,v 6.0 89/03/18 23:34:09 mrose Rel $ * * * $Log: template.c,v $ * Revision 6.0 89/03/18 23:34:09 mrose * Release 5.0 * */ /* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */ #include "stdio.h" #include "quipu/photo.h" /* Any errors should be written to *stdout* */ /* if the process exits, with out giving an error message, quipu may hang */ photo_start (name) char * name; { /* Initialise a window to recieve a photo of 'name' */ /* return 0 if sucessful -1 if not */ (void) fprintf (stderr,"PHOTO: not implemented yet"); return (-1); } photo_end (name) char * name; { /* Decoding has finished - display the photo */ (void) fprintf (stderr,"done it"); (void) close (2); /* this is needed for QUIPU */ /* return 0 if sucessful -1 if not */ return (-1); } photo_black (length) int length; { /* draw a black line of 'length' pixels */ } photo_white (length) int length; { /* draw a white line of 'length' pixels */ } photo_line_end (line) bit_string * line; { /* the end of a line has been reached */ /* A bit string is stored in line->dbuf_top */ }