IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 3:02:31 PM (20 years ago)
Author:
Paul Price
Message:

Renaming functions in pmConceptsRead.h and pmConceptsWrite.h to be private ("p_").
Adding const where appropriate, and changing order of parameters to match usual
convention (outputs go first).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConceptsWrite.c

    r9539 r9570  
    220220//////////////////////////////////////////////////////////////////////////////////////////////////////////////
    221221
    222 bool pmConceptsWriteToCamera(psMetadata *specs, // The concept specifications
    223                              pmCell *cell,   // The cell
    224                              psMetadata *concepts // The concepts
    225                             )
     222bool p_pmConceptsWriteToCells(psMetadata *specs, // The concept specifications
     223                              pmCell *cell,   // The cell
     224                              psMetadata *concepts // The concepts
     225                             )
    226226{
    227227    PS_ASSERT_PTR_NON_NULL(specs, false);
     
    291291}
    292292
    293 bool pmConceptsWriteToDefaults(psMetadata *specs, // The concept specifications
    294                                pmFPA *fpa, // The FPA
    295                                pmChip *chip, // The chip
    296                                pmCell *cell, // The cell
    297                                psMetadata *concepts // The concepts
    298                               )
     293bool p_pmConceptsWriteToDefaults(psMetadata *specs, // The concept specifications
     294                                 pmFPA *fpa, // The FPA
     295                                 pmChip *chip, // The chip
     296                                 pmCell *cell, // The cell
     297                                 psMetadata *concepts // The concepts
     298                                )
    299299{
    300300    PS_ASSERT_PTR_NON_NULL(specs, false);
     
    357357
    358358
    359 bool pmConceptsWriteToHeader(psMetadata *specs, // The concept specifications
    360                              pmFPA *fpa, // The FPA
    361                              pmChip *chip, // The chip
    362                              pmCell *cell, // The cell
    363                              psMetadata *concepts // The concepts
    364                             )
     359bool p_pmConceptsWriteToHeader(psMetadata *specs, // The concept specifications
     360                               pmFPA *fpa, // The FPA
     361                               pmChip *chip, // The chip
     362                               pmCell *cell, // The cell
     363                               psMetadata *concepts // The concepts
     364                              )
    365365{
    366366    PS_ASSERT_PTR_NON_NULL(specs, false);
     
    405405
    406406// XXX Warning: This code has not been tested at all
    407 bool pmConceptsWriteToDatabase(psMetadata *specs, // The concept specifications
    408                                pmFPA *fpa, // The FPA
    409                                pmChip *chip, // The chip
    410                                pmCell *cell, // The cell
    411                                psDB *db,// The database handle
    412                                psMetadata *concepts // The concepts
    413                               )
     407bool p_pmConceptsWriteToDatabase(psMetadata *specs, // The concept specifications
     408                                 pmFPA *fpa, // The FPA
     409                                 pmChip *chip, // The chip
     410                                 pmCell *cell, // The cell
     411                                 psDB *db,// The database handle
     412                                 psMetadata *concepts // The concepts
     413                                )
    414414{
    415415    PS_ASSERT_PTR_NON_NULL(specs, false);
Note: See TracChangeset for help on using the changeset viewer.