IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 23, 2009, 9:25:43 AM (17 years ago)
Author:
Paul Price
Message:

Functions declared as 'type function()' caused errors with the Intel compiler ('error #310: old-style parameter list (anachronism)'), which wants 'type function()'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphot.h

    r23242 r23486  
    2323
    2424bool            psphotModelTest (pmConfig *config, const pmFPAview *view, psMetadata *recipe);
    25 bool            psphotInit ();
     25bool            psphotInit (void);
    2626bool            psphotReadout (pmConfig *config, const pmFPAview *view);
    2727bool            psphotReadoutFindPSF(pmConfig *config, const pmFPAview *view, psArray *inSources);
     
    3535
    3636// XXX test functions
    37 psArray        *psphotFakeSources ();
     37psArray        *psphotFakeSources (void);
    3838
    3939// psphotReadout functions
     
    7676
    7777// thread-related:
    78 bool            psphotSetThreads ();
     78bool            psphotSetThreads (void);
    7979bool            psphotChooseCellSizes (int *Cx, int *Cy, pmReadout *readout, int nThreads);
    8080bool            psphotCoordToCell (int *group, int *cell, float x, float y, int Cx, int Cy);
     
    136136bool            psphotPlotMoments (pmConfig *config, pmFPAview *view, psArray *sources);
    137137bool            psphotPlotPSFModel (pmConfig *config, pmFPAview *view, psArray *sources);
    138 bool            psphotFitInit ();
    139 bool            psphotFitSummary ();
     138bool            psphotFitInit (void);
     139bool            psphotFitSummary (void);
    140140
    141141bool            psphotMergeSources (psArray *oldSources, psArray *newSources);
     
    230230psImage *pmPCMDataSaveImage (pmPCMData *pcm);
    231231
    232 int psphotKapaOpen ();
    233 bool psphotKapaClose ();
     232int psphotKapaOpen (void);
     233bool psphotKapaClose (void);
    234234bool psphotImageBackgroundCellHistogram (psVector *values, float mean, float sigma, int ix, int iy);
    235235bool psphotDiagnosticPlots (const pmConfig *config, const char *name, ...);
Note: See TracChangeset for help on using the changeset viewer.