made callback functions static.

Wed, 12 Mar 2003 07:53:55 +0000

author
eric
date
Wed, 12 Mar 2003 07:53:55 +0000
changeset 102
f6c042f4dadb
parent 101
385a2f77a5d8
child 103
f84ac68cac1b

made callback functions static.

pdf_g4.c file | annotate | diff | revisions
     1.1 --- a/pdf_g4.c	Wed Mar 12 07:43:56 2003 +0000
     1.2 +++ b/pdf_g4.c	Wed Mar 12 07:53:55 2003 +0000
     1.3 @@ -4,7 +4,7 @@
     1.4   *      will be compressed using ITU-T T.6 (G4) fax encoding.
     1.5   *
     1.6   * PDF routines
     1.7 - * $Id: pdf_g4.c,v 1.11 2003/03/11 23:43:56 eric Exp $
     1.8 + * $Id: pdf_g4.c,v 1.12 2003/03/11 23:53:55 eric Exp $
     1.9   * Copyright 2003 Eric Smith <eric@brouhaha.com>
    1.10   *
    1.11   * This program is free software; you can redistribute it and/or modify
    1.12 @@ -52,9 +52,9 @@
    1.13  };
    1.14  
    1.15  
    1.16 -void pdf_write_g4_content_callback (pdf_file_handle pdf_file,
    1.17 -				    struct pdf_obj *stream,
    1.18 -				    void *app_data)
    1.19 +static void pdf_write_g4_content_callback (pdf_file_handle pdf_file,
    1.20 +					   struct pdf_obj *stream,
    1.21 +					   void *app_data)
    1.22  {
    1.23    struct pdf_g4_image *image = app_data;
    1.24  
    1.25 @@ -71,9 +71,9 @@
    1.26  }
    1.27  
    1.28  
    1.29 -void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file,
    1.30 -				      struct pdf_obj *stream,
    1.31 -				      void *app_data)
    1.32 +static void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file,
    1.33 +					     struct pdf_obj *stream,
    1.34 +					     void *app_data)
    1.35  {
    1.36    struct pdf_g4_image *image = app_data;
    1.37