IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 13, 2007, 5:22:48 PM (19 years ago)
Author:
Paul Price
Message:

Adding const to pmConfig parameter, where possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPA_JPEG.c

    r12696 r12832  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-03-30 21:12:56 $
     7 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-04-14 03:22:47 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3535
    3636
    37 bool pmFPAviewWriteJPEG(const pmFPAview *view, pmFPAfile *file, pmConfig *config)
     37bool pmFPAviewWriteJPEG(const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
    3838{
    3939    PS_ASSERT_PTR_NON_NULL(view, false);
     
    7777
    7878// read in all chip-level JPEG files for this FPA
    79 bool pmFPAWriteJPEG (pmFPA *fpa, const pmFPAview *view, pmFPAfile *file, pmConfig *config)
     79bool pmFPAWriteJPEG (pmFPA *fpa, const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
    8080{
    8181    PS_ASSERT_PTR_NON_NULL(fpa, false);
     
    9292
    9393// read in all cell-level JPEG files for this chip
    94 bool pmChipWriteJPEG (pmChip *chip, const pmFPAview *view, pmFPAfile *file, pmConfig *config)
     94bool pmChipWriteJPEG (pmChip *chip, const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
    9595{
    9696    PS_ASSERT_PTR_NON_NULL(chip, false);
     
    107107
    108108// read in all readout-level JPEG files for this cell
    109 bool pmCellWriteJPEG (pmCell *cell, const pmFPAview *view, pmFPAfile *file, pmConfig *config)
     109bool pmCellWriteJPEG (pmCell *cell, const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
    110110{
    111111    PS_ASSERT_PTR_NON_NULL(cell, false);
     
    125125// just because the values are in a poor range.  it is more convenient to know you are getting
    126126// a jpeg which is weird than to fail to get the file at all.
    127 bool pmReadoutWriteJPEG (pmReadout *readout, const pmFPAview *view, pmFPAfile *file, pmConfig *config)
     127bool pmReadoutWriteJPEG (pmReadout *readout, const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
    128128{
    129129    bool status;
Note: See TracChangeset for help on using the changeset viewer.