IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 15, 2006, 12:38:13 PM (20 years ago)
Author:
jhoblitt
Message:

VERSION to 0.0.68

File:
1 edited

Legend:

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

    r10748 r10753  
    76527652    bool            mdcf                ///< format as mdconfig or simple
    76537653);
    7654 /** p4PStackedImfileRow data structure
    7655  *
    7656  * Structure for representing a single row of p4PStackedImfile table data.
     7654/** p4StackedImfileRow data structure
     7655 *
     7656 * Structure for representing a single row of p4StackedImfile table data.
    76577657 */
    76587658
     
    76637663    char            *b1_uri;
    76647664    char            *b2_uri;
    7665 } p4PStackedImfileRow;
    7666 
    7667 /** Creates a new p4PStackedImfileRow object
    7668  *
    7669  *  @return A new p4PStackedImfileRow object or NULL on failure.
    7670  */
    7671 
    7672 p4PStackedImfileRow *p4PStackedImfileRowAlloc(
     7665} p4StackedImfileRow;
     7666
     7667/** Creates a new p4StackedImfileRow object
     7668 *
     7669 *  @return A new p4StackedImfileRow object or NULL on failure.
     7670 */
     7671
     7672p4StackedImfileRow *p4StackedImfileRowAlloc(
    76737673    psS32           p4_id,
    76747674    const char      *class_id,
     
    76787678);
    76797679
    7680 /** Creates a new p4PStackedImfile table
    7681  *
    7682  * @return true on success
    7683  */
    7684 
    7685 bool p4PStackedImfileCreateTable(
     7680/** Creates a new p4StackedImfile table
     7681 *
     7682 * @return true on success
     7683 */
     7684
     7685bool p4StackedImfileCreateTable(
    76867686    psDB            *dbh                ///< Database handle
    76877687);
    76887688
    7689 /** Deletes a p4PStackedImfile table
    7690  *
    7691  * @return true on success
    7692  */
    7693 
    7694 bool p4PStackedImfileDropTable(
     7689/** Deletes a p4StackedImfile table
     7690 *
     7691 * @return true on success
     7692 */
     7693
     7694bool p4StackedImfileDropTable(
    76957695    psDB            *dbh                ///< Database handle
    76967696);
     
    77037703 */
    77047704
    7705 bool p4PStackedImfileInsert(
     7705bool p4StackedImfileInsert(
    77067706    psDB            *dbh,               ///< Database handle
    77077707    psS32           p4_id,
     
    77177717 */
    77187718
    7719 long long p4PStackedImfileDelete(
     7719long long p4StackedImfileDelete(
    77207720    psDB            *dbh,               ///< Database handle
    77217721    const psMetadata *where,            ///< Row match criteria
     
    77237723);
    77247724
    7725 /** Insert a single p4PStackedImfileRow object into a table
     7725/** Insert a single p4StackedImfileRow object into a table
    77267726 *
    77277727 * This function constructs and inserts a single row based on it's parameters.
     
    77307730 */
    77317731
    7732 bool p4PStackedImfileInsertObject(
    7733     psDB            *dbh,               ///< Database handle
    7734     p4PStackedImfileRow *object             ///< p4PStackedImfileRow object
    7735 );
    7736 
    7737 /** Insert an array of p4PStackedImfileRow object into a table
     7732bool p4StackedImfileInsertObject(
     7733    psDB            *dbh,               ///< Database handle
     7734    p4StackedImfileRow *object             ///< p4StackedImfileRow object
     7735);
     7736
     7737/** Insert an array of p4StackedImfileRow object into a table
    77387738 *
    77397739 * This function constructs and inserts multiple rows based on it's parameters.
     
    77427742 */
    77437743
    7744 bool p4PStackedImfileInsertObjects(
    7745     psDB            *dbh,               ///< Database handle
    7746     psArray         *objects            ///< array of p4PStackedImfileRow objects
    7747 );
    7748 
    7749 /** Insert data from a binary FITS table p4PStackedImfileRow into the database
     7744bool p4StackedImfileInsertObjects(
     7745    psDB            *dbh,               ///< Database handle
     7746    psArray         *objects            ///< array of p4StackedImfileRow objects
     7747);
     7748
     7749/** Insert data from a binary FITS table p4StackedImfileRow into the database
    77507750 *
    77517751 * This function expects a psFits object with a FITS table as the first
     
    77577757 */
    77587758
    7759 bool p4PStackedImfileInsertFits(
     7759bool p4StackedImfileInsertFits(
    77607760    psDB            *dbh,               ///< Database handle
    77617761    const psFits    *fits               ///< psFits object
     
    77727772 */
    77737773
    7774 bool p4PStackedImfileSelectRowsFits(
     7774bool p4StackedImfileSelectRowsFits(
    77757775    psDB            *dbh,               ///< Database handle
    77767776    psFits          *fits,              ///< psFits object
     
    77797779);
    77807780
    7781 /** Convert a p4PStackedImfileRow into an equivalent psMetadata
     7781/** Convert a p4StackedImfileRow into an equivalent psMetadata
    77827782 *
    77837783 * @return A psMetadata pointer or NULL on error
    77847784 */
    77857785
    7786 psMetadata *p4PStackedImfileMetadataFromObject(
    7787     const p4PStackedImfileRow *object             ///< fooRow to convert into a psMetadata
     7786psMetadata *p4StackedImfileMetadataFromObject(
     7787    const p4StackedImfileRow *object             ///< fooRow to convert into a psMetadata
    77887788);
    77897789
    77907790/** Convert a psMetadata into an equivalent fooRow
    77917791 *
    7792  * @return A p4PStackedImfileRow pointer or NULL on error
    7793  */
    7794 
    7795 p4PStackedImfileRow *p4PStackedImfileObjectFromMetadata(
     7792 * @return A p4StackedImfileRow pointer or NULL on error
     7793 */
     7794
     7795p4StackedImfileRow *p4StackedImfileObjectFromMetadata(
    77967796    psMetadata      *md                 ///< psMetadata to convert into a fooRow
    77977797);
    7798 /** Selects up to limit rows from the database and returns as p4PStackedImfileRow objects in a psArray
     7798/** Selects up to limit rows from the database and returns as p4StackedImfileRow objects in a psArray
    77997799 *
    78007800 *  See psDBSelectRows() for documentation on the format of where.
     
    78037803 */
    78047804
    7805 psArray *p4PStackedImfileSelectRowObjects(
     7805psArray *p4StackedImfileSelectRowObjects(
    78067806    psDB            *dbh,               ///< Database handle
    78077807    const psMetadata *where,            ///< Row match criteria
    78087808    unsigned long long limit            ///< Maximum number of elements to return
    78097809);
    7810 /** Deletes a row from the database coresponding to an p4PStackedImfile
     7810/** Deletes a row from the database coresponding to an p4StackedImfile
    78117811 *
    78127812 *  Note that a 'where' search psMetadata is constructed from each object and
     
    78167816 */
    78177817
    7818 bool p4PStackedImfileDeleteObject(
    7819     psDB            *dbh,               ///< Database handle
    7820     const p4PStackedImfileRow *object    ///< Object to delete
     7818bool p4StackedImfileDeleteObject(
     7819    psDB            *dbh,               ///< Database handle
     7820    const p4StackedImfileRow *object    ///< Object to delete
    78217821);
    78227822/** Deletes up to limit rows from the database and returns the number of rows actually deleted.
     
    78287828 */
    78297829
    7830 long long p4PStackedImfileDeleteRowObjects(
     7830long long p4StackedImfileDeleteRowObjects(
    78317831    psDB            *dbh,               ///< Database handle
    78327832    const psArray   *objects,           ///< Array of objects to delete
    78337833    unsigned long long limit            ///< Maximum number of elements to delete
    78347834);
    7835 /** Formats and prints an array of p4PStackedImfileRow objects
     7835/** Formats and prints an array of p4StackedImfileRow objects
    78367836 *
    78377837 * When mdcf is set the formated output is in psMetadataConfig
     
    78417841 */
    78427842
    7843 bool p4PStackedImfilePrintObjects(
     7843bool p4StackedImfilePrintObjects(
    78447844    FILE            *stream,            ///< a stream
    7845     psArray         *objects,           ///< An array of p4PStackedImfileRow objects
     7845    psArray         *objects,           ///< An array of p4StackedImfileRow objects
    78467846    bool            mdcf                ///< format as mdconfig or simple
    78477847);
    7848 /** Formats and prints an p4PStackedImfileRow object
     7848/** Formats and prints an p4StackedImfileRow object
    78497849 *
    78507850 * When mdcf is set the formated output is in psMetadataConfig
     
    78547854 */
    78557855
    7856 bool p4PStackedImfilePrintObject(
     7856bool p4StackedImfilePrintObject(
    78577857    FILE            *stream,            ///< a stream
    7858     p4PStackedImfileRow *object,    ///< an p4PStackedImfileRow object
     7858    p4StackedImfileRow *object,    ///< an p4StackedImfileRow object
    78597859    bool            mdcf                ///< format as mdconfig or simple
    78607860);
    7861 /** p4PDiffImfileRow data structure
    7862  *
    7863  * Structure for representing a single row of p4PDiffImfile table data.
     7861/** p4DiffImfileRow data structure
     7862 *
     7863 * Structure for representing a single row of p4DiffImfile table data.
    78647864 */
    78657865
     
    78727872    char            *b1_uri;
    78737873    char            *b2_uri;
    7874 } p4PDiffImfileRow;
    7875 
    7876 /** Creates a new p4PDiffImfileRow object
    7877  *
    7878  *  @return A new p4PDiffImfileRow object or NULL on failure.
    7879  */
    7880 
    7881 p4PDiffImfileRow *p4PDiffImfileRowAlloc(
     7874} p4DiffImfileRow;
     7875
     7876/** Creates a new p4DiffImfileRow object
     7877 *
     7878 *  @return A new p4DiffImfileRow object or NULL on failure.
     7879 */
     7880
     7881p4DiffImfileRow *p4DiffImfileRowAlloc(
    78827882    psS32           p4_id,
    78837883    const char      *exp_tag,
     
    78897889);
    78907890
    7891 /** Creates a new p4PDiffImfile table
    7892  *
    7893  * @return true on success
    7894  */
    7895 
    7896 bool p4PDiffImfileCreateTable(
     7891/** Creates a new p4DiffImfile table
     7892 *
     7893 * @return true on success
     7894 */
     7895
     7896bool p4DiffImfileCreateTable(
    78977897    psDB            *dbh                ///< Database handle
    78987898);
    78997899
    7900 /** Deletes a p4PDiffImfile table
    7901  *
    7902  * @return true on success
    7903  */
    7904 
    7905 bool p4PDiffImfileDropTable(
     7900/** Deletes a p4DiffImfile table
     7901 *
     7902 * @return true on success
     7903 */
     7904
     7905bool p4DiffImfileDropTable(
    79067906    psDB            *dbh                ///< Database handle
    79077907);
     
    79147914 */
    79157915
    7916 bool p4PDiffImfileInsert(
     7916bool p4DiffImfileInsert(
    79177917    psDB            *dbh,               ///< Database handle
    79187918    psS32           p4_id,
     
    79307930 */
    79317931
    7932 long long p4PDiffImfileDelete(
     7932long long p4DiffImfileDelete(
    79337933    psDB            *dbh,               ///< Database handle
    79347934    const psMetadata *where,            ///< Row match criteria
     
    79367936);
    79377937
    7938 /** Insert a single p4PDiffImfileRow object into a table
     7938/** Insert a single p4DiffImfileRow object into a table
    79397939 *
    79407940 * This function constructs and inserts a single row based on it's parameters.
     
    79437943 */
    79447944
    7945 bool p4PDiffImfileInsertObject(
    7946     psDB            *dbh,               ///< Database handle
    7947     p4PDiffImfileRow *object             ///< p4PDiffImfileRow object
    7948 );
    7949 
    7950 /** Insert an array of p4PDiffImfileRow object into a table
     7945bool p4DiffImfileInsertObject(
     7946    psDB            *dbh,               ///< Database handle
     7947    p4DiffImfileRow *object             ///< p4DiffImfileRow object
     7948);
     7949
     7950/** Insert an array of p4DiffImfileRow object into a table
    79517951 *
    79527952 * This function constructs and inserts multiple rows based on it's parameters.
     
    79557955 */
    79567956
    7957 bool p4PDiffImfileInsertObjects(
    7958     psDB            *dbh,               ///< Database handle
    7959     psArray         *objects            ///< array of p4PDiffImfileRow objects
    7960 );
    7961 
    7962 /** Insert data from a binary FITS table p4PDiffImfileRow into the database
     7957bool p4DiffImfileInsertObjects(
     7958    psDB            *dbh,               ///< Database handle
     7959    psArray         *objects            ///< array of p4DiffImfileRow objects
     7960);
     7961
     7962/** Insert data from a binary FITS table p4DiffImfileRow into the database
    79637963 *
    79647964 * This function expects a psFits object with a FITS table as the first
     
    79707970 */
    79717971
    7972 bool p4PDiffImfileInsertFits(
     7972bool p4DiffImfileInsertFits(
    79737973    psDB            *dbh,               ///< Database handle
    79747974    const psFits    *fits               ///< psFits object
     
    79857985 */
    79867986
    7987 bool p4PDiffImfileSelectRowsFits(
     7987bool p4DiffImfileSelectRowsFits(
    79887988    psDB            *dbh,               ///< Database handle
    79897989    psFits          *fits,              ///< psFits object
     
    79927992);
    79937993
    7994 /** Convert a p4PDiffImfileRow into an equivalent psMetadata
     7994/** Convert a p4DiffImfileRow into an equivalent psMetadata
    79957995 *
    79967996 * @return A psMetadata pointer or NULL on error
    79977997 */
    79987998
    7999 psMetadata *p4PDiffImfileMetadataFromObject(
    8000     const p4PDiffImfileRow *object             ///< fooRow to convert into a psMetadata
     7999psMetadata *p4DiffImfileMetadataFromObject(
     8000    const p4DiffImfileRow *object             ///< fooRow to convert into a psMetadata
    80018001);
    80028002
    80038003/** Convert a psMetadata into an equivalent fooRow
    80048004 *
    8005  * @return A p4PDiffImfileRow pointer or NULL on error
    8006  */
    8007 
    8008 p4PDiffImfileRow *p4PDiffImfileObjectFromMetadata(
     8005 * @return A p4DiffImfileRow pointer or NULL on error
     8006 */
     8007
     8008p4DiffImfileRow *p4DiffImfileObjectFromMetadata(
    80098009    psMetadata      *md                 ///< psMetadata to convert into a fooRow
    80108010);
    8011 /** Selects up to limit rows from the database and returns as p4PDiffImfileRow objects in a psArray
     8011/** Selects up to limit rows from the database and returns as p4DiffImfileRow objects in a psArray
    80128012 *
    80138013 *  See psDBSelectRows() for documentation on the format of where.
     
    80168016 */
    80178017
    8018 psArray *p4PDiffImfileSelectRowObjects(
     8018psArray *p4DiffImfileSelectRowObjects(
    80198019    psDB            *dbh,               ///< Database handle
    80208020    const psMetadata *where,            ///< Row match criteria
    80218021    unsigned long long limit            ///< Maximum number of elements to return
    80228022);
    8023 /** Deletes a row from the database coresponding to an p4PDiffImfile
     8023/** Deletes a row from the database coresponding to an p4DiffImfile
    80248024 *
    80258025 *  Note that a 'where' search psMetadata is constructed from each object and
     
    80298029 */
    80308030
    8031 bool p4PDiffImfileDeleteObject(
    8032     psDB            *dbh,               ///< Database handle
    8033     const p4PDiffImfileRow *object    ///< Object to delete
     8031bool p4DiffImfileDeleteObject(
     8032    psDB            *dbh,               ///< Database handle
     8033    const p4DiffImfileRow *object    ///< Object to delete
    80348034);
    80358035/** Deletes up to limit rows from the database and returns the number of rows actually deleted.
     
    80418041 */
    80428042
    8043 long long p4PDiffImfileDeleteRowObjects(
     8043long long p4DiffImfileDeleteRowObjects(
    80448044    psDB            *dbh,               ///< Database handle
    80458045    const psArray   *objects,           ///< Array of objects to delete
    80468046    unsigned long long limit            ///< Maximum number of elements to delete
    80478047);
    8048 /** Formats and prints an array of p4PDiffImfileRow objects
     8048/** Formats and prints an array of p4DiffImfileRow objects
    80498049 *
    80508050 * When mdcf is set the formated output is in psMetadataConfig
     
    80548054 */
    80558055
    8056 bool p4PDiffImfilePrintObjects(
     8056bool p4DiffImfilePrintObjects(
    80578057    FILE            *stream,            ///< a stream
    8058     psArray         *objects,           ///< An array of p4PDiffImfileRow objects
     8058    psArray         *objects,           ///< An array of p4DiffImfileRow objects
    80598059    bool            mdcf                ///< format as mdconfig or simple
    80608060);
    8061 /** Formats and prints an p4PDiffImfileRow object
     8061/** Formats and prints an p4DiffImfileRow object
    80628062 *
    80638063 * When mdcf is set the formated output is in psMetadataConfig
     
    80678067 */
    80688068
    8069 bool p4PDiffImfilePrintObject(
     8069bool p4DiffImfilePrintObject(
    80708070    FILE            *stream,            ///< a stream
    8071     p4PDiffImfileRow *object,    ///< an p4PDiffImfileRow object
     8071    p4DiffImfileRow *object,    ///< an p4DiffImfileRow object
    80728072    bool            mdcf                ///< format as mdconfig or simple
    80738073);
    8074 /** p4PMagicMaskImfileRow data structure
    8075  *
    8076  * Structure for representing a single row of p4PMagicMaskImfile table data.
     8074/** p4MagicMaskImfileRow data structure
     8075 *
     8076 * Structure for representing a single row of p4MagicMaskImfile table data.
    80778077 */
    80788078
     
    80838083    char            *class_id;
    80848084    char            *uri;
    8085 } p4PMagicMaskImfileRow;
    8086 
    8087 /** Creates a new p4PMagicMaskImfileRow object
    8088  *
    8089  *  @return A new p4PMagicMaskImfileRow object or NULL on failure.
    8090  */
    8091 
    8092 p4PMagicMaskImfileRow *p4PMagicMaskImfileRowAlloc(
     8085} p4MagicMaskImfileRow;
     8086
     8087/** Creates a new p4MagicMaskImfileRow object
     8088 *
     8089 *  @return A new p4MagicMaskImfileRow object or NULL on failure.
     8090 */
     8091
     8092p4MagicMaskImfileRow *p4MagicMaskImfileRowAlloc(
    80938093    psS32           p4_id,
    80948094    const char      *exp_tag,
     
    80988098);
    80998099
    8100 /** Creates a new p4PMagicMaskImfile table
    8101  *
    8102  * @return true on success
    8103  */
    8104 
    8105 bool p4PMagicMaskImfileCreateTable(
     8100/** Creates a new p4MagicMaskImfile table
     8101 *
     8102 * @return true on success
     8103 */
     8104
     8105bool p4MagicMaskImfileCreateTable(
    81068106    psDB            *dbh                ///< Database handle
    81078107);
    81088108
    8109 /** Deletes a p4PMagicMaskImfile table
    8110  *
    8111  * @return true on success
    8112  */
    8113 
    8114 bool p4PMagicMaskImfileDropTable(
     8109/** Deletes a p4MagicMaskImfile table
     8110 *
     8111 * @return true on success
     8112 */
     8113
     8114bool p4MagicMaskImfileDropTable(
    81158115    psDB            *dbh                ///< Database handle
    81168116);
     
    81238123 */
    81248124
    8125 bool p4PMagicMaskImfileInsert(
     8125bool p4MagicMaskImfileInsert(
    81268126    psDB            *dbh,               ///< Database handle
    81278127    psS32           p4_id,
     
    81378137 */
    81388138
    8139 long long p4PMagicMaskImfileDelete(
     8139long long p4MagicMaskImfileDelete(
    81408140    psDB            *dbh,               ///< Database handle
    81418141    const psMetadata *where,            ///< Row match criteria
     
    81438143);
    81448144
    8145 /** Insert a single p4PMagicMaskImfileRow object into a table
     8145/** Insert a single p4MagicMaskImfileRow object into a table
    81468146 *
    81478147 * This function constructs and inserts a single row based on it's parameters.
     
    81508150 */
    81518151
    8152 bool p4PMagicMaskImfileInsertObject(
    8153     psDB            *dbh,               ///< Database handle
    8154     p4PMagicMaskImfileRow *object             ///< p4PMagicMaskImfileRow object
    8155 );
    8156 
    8157 /** Insert an array of p4PMagicMaskImfileRow object into a table
     8152bool p4MagicMaskImfileInsertObject(
     8153    psDB            *dbh,               ///< Database handle
     8154    p4MagicMaskImfileRow *object             ///< p4MagicMaskImfileRow object
     8155);
     8156
     8157/** Insert an array of p4MagicMaskImfileRow object into a table
    81588158 *
    81598159 * This function constructs and inserts multiple rows based on it's parameters.
     
    81628162 */
    81638163
    8164 bool p4PMagicMaskImfileInsertObjects(
    8165     psDB            *dbh,               ///< Database handle
    8166     psArray         *objects            ///< array of p4PMagicMaskImfileRow objects
    8167 );
    8168 
    8169 /** Insert data from a binary FITS table p4PMagicMaskImfileRow into the database
     8164bool p4MagicMaskImfileInsertObjects(
     8165    psDB            *dbh,               ///< Database handle
     8166    psArray         *objects            ///< array of p4MagicMaskImfileRow objects
     8167);
     8168
     8169/** Insert data from a binary FITS table p4MagicMaskImfileRow into the database
    81708170 *
    81718171 * This function expects a psFits object with a FITS table as the first
     
    81778177 */
    81788178
    8179 bool p4PMagicMaskImfileInsertFits(
     8179bool p4MagicMaskImfileInsertFits(
    81808180    psDB            *dbh,               ///< Database handle
    81818181    const psFits    *fits               ///< psFits object
     
    81928192 */
    81938193
    8194 bool p4PMagicMaskImfileSelectRowsFits(
     8194bool p4MagicMaskImfileSelectRowsFits(
    81958195    psDB            *dbh,               ///< Database handle
    81968196    psFits          *fits,              ///< psFits object
     
    81998199);
    82008200
    8201 /** Convert a p4PMagicMaskImfileRow into an equivalent psMetadata
     8201/** Convert a p4MagicMaskImfileRow into an equivalent psMetadata
    82028202 *
    82038203 * @return A psMetadata pointer or NULL on error
    82048204 */
    82058205
    8206 psMetadata *p4PMagicMaskImfileMetadataFromObject(
    8207     const p4PMagicMaskImfileRow *object             ///< fooRow to convert into a psMetadata
     8206psMetadata *p4MagicMaskImfileMetadataFromObject(
     8207    const p4MagicMaskImfileRow *object             ///< fooRow to convert into a psMetadata
    82088208);
    82098209
    82108210/** Convert a psMetadata into an equivalent fooRow
    82118211 *
    8212  * @return A p4PMagicMaskImfileRow pointer or NULL on error
    8213  */
    8214 
    8215 p4PMagicMaskImfileRow *p4PMagicMaskImfileObjectFromMetadata(
     8212 * @return A p4MagicMaskImfileRow pointer or NULL on error
     8213 */
     8214
     8215p4MagicMaskImfileRow *p4MagicMaskImfileObjectFromMetadata(
    82168216    psMetadata      *md                 ///< psMetadata to convert into a fooRow
    82178217);
    8218 /** Selects up to limit rows from the database and returns as p4PMagicMaskImfileRow objects in a psArray
     8218/** Selects up to limit rows from the database and returns as p4MagicMaskImfileRow objects in a psArray
    82198219 *
    82208220 *  See psDBSelectRows() for documentation on the format of where.
     
    82238223 */
    82248224
    8225 psArray *p4PMagicMaskImfileSelectRowObjects(
     8225psArray *p4MagicMaskImfileSelectRowObjects(
    82268226    psDB            *dbh,               ///< Database handle
    82278227    const psMetadata *where,            ///< Row match criteria
    82288228    unsigned long long limit            ///< Maximum number of elements to return
    82298229);
    8230 /** Deletes a row from the database coresponding to an p4PMagicMaskImfile
     8230/** Deletes a row from the database coresponding to an p4MagicMaskImfile
    82318231 *
    82328232 *  Note that a 'where' search psMetadata is constructed from each object and
     
    82368236 */
    82378237
    8238 bool p4PMagicMaskImfileDeleteObject(
    8239     psDB            *dbh,               ///< Database handle
    8240     const p4PMagicMaskImfileRow *object    ///< Object to delete
     8238bool p4MagicMaskImfileDeleteObject(
     8239    psDB            *dbh,               ///< Database handle
     8240    const p4MagicMaskImfileRow *object    ///< Object to delete
    82418241);
    82428242/** Deletes up to limit rows from the database and returns the number of rows actually deleted.
     
    82488248 */
    82498249
    8250 long long p4PMagicMaskImfileDeleteRowObjects(
     8250long long p4MagicMaskImfileDeleteRowObjects(
    82518251    psDB            *dbh,               ///< Database handle
    82528252    const psArray   *objects,           ///< Array of objects to delete
    82538253    unsigned long long limit            ///< Maximum number of elements to delete
    82548254);
    8255 /** Formats and prints an array of p4PMagicMaskImfileRow objects
     8255/** Formats and prints an array of p4MagicMaskImfileRow objects
    82568256 *
    82578257 * When mdcf is set the formated output is in psMetadataConfig
     
    82618261 */
    82628262
    8263 bool p4PMagicMaskImfilePrintObjects(
     8263bool p4MagicMaskImfilePrintObjects(
    82648264    FILE            *stream,            ///< a stream
    8265     psArray         *objects,           ///< An array of p4PMagicMaskImfileRow objects
     8265    psArray         *objects,           ///< An array of p4MagicMaskImfileRow objects
    82668266    bool            mdcf                ///< format as mdconfig or simple
    82678267);
    8268 /** Formats and prints an p4PMagicMaskImfileRow object
     8268/** Formats and prints an p4MagicMaskImfileRow object
    82698269 *
    82708270 * When mdcf is set the formated output is in psMetadataConfig
     
    82748274 */
    82758275
    8276 bool p4PMagicMaskImfilePrintObject(
     8276bool p4MagicMaskImfilePrintObject(
    82778277    FILE            *stream,            ///< a stream
    8278     p4PMagicMaskImfileRow *object,    ///< an p4PMagicMaskImfileRow object
     8278    p4MagicMaskImfileRow *object,    ///< an p4MagicMaskImfileRow object
    82798279    bool            mdcf                ///< format as mdconfig or simple
    82808280);
     
    82868286#endif
    82878287
    8288 #endif // P4PMAGICMASKIMFILE_DB_H
     8288#endif // P4MAGICMASKIMFILE_DB_H
Note: See TracChangeset for help on using the changeset viewer.