Diff for /Amaya/amaya/HTMLbook.c between versions 1.44 and 1.45

version 1.44, 1999/05/06 12:25:25 version 1.45, 1999/05/06 16:24:49
Line 416  Document            document; Line 416  Document            document;
    PrintAs prints the document using predefined parameters.     PrintAs prints the document using predefined parameters.
    ----------------------------------------------------------------------*/       ----------------------------------------------------------------------*/  
 #ifdef __STDC__  #ifdef __STDC__
 void                PrintAs (Document doc, View view)  static void         PrintDocument (Document doc, View view)
 #else  /* __STDC__ */  #else  /* __STDC__ */
 void                PrintAs (doc, view)  static void         PrintDocument (doc, view)
 Document            doc;  Document            doc;
 #endif /* __STDC__ */  #endif /* __STDC__ */
 {  {
Line 488  Document            doc; Line 488  Document            doc;
      TtaSetDocumentUnmodified (doc);       TtaSetDocumentUnmodified (doc);
 }  }
   
   /*----------------------------------------------------------------------
      PrintAs prints the document using predefined parameters.
      ----------------------------------------------------------------------*/  
   #ifdef __STDC__
   void                PrintAs (Document doc, View view)
   #else  /* __STDC__ */
   void                PrintAs (doc, view)
   Document            doc;
   #endif /* __STDC__ */
   {
   #ifdef _WINDOWS 
     SetupAndPrint (doc, view);
   #else /* _WINDOWS */
     PrintDocument (doc, view);
   #endif /* _WINDOWS */
   }
   
 /*----------------------------------------------------------------------  /*----------------------------------------------------------------------
    CallbackImage manage returns of Picture form.                        CallbackImage manage returns of Picture form.                   

Removed from v.1.44  
changed lines
  Added in v.1.45


Webmaster