IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 9, 2007, 12:14:24 PM (19 years ago)
Author:
jhoblitt
Message:

p2/p3 version reorg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/chiptool.c

    r11713 r11735  
    859859    return p2ProcessedImfileRowAlloc(
    860860        imfile->exp_tag,
     861        imfile->p2_version,
     862        imfile->p1_version,
    861863        imfile->class_id,
     864        recipe,
    862865        uri,
    863         recipe,
    864866        bg,
    865867        bg_stdev,
     
    867869        b1_uri,
    868870        b2_uri,
    869         imfile->p1_version,
    870         imfile->p2_version,
    871871        code
    872872    );
     
    880880    return p2ProcessedExpRowAlloc(
    881881        pendingExp->exp_tag,
     882        pendingExp->p2_version,
    882883        pendingExp->p1_version,
     884        pendingExp->label
     885    );
     886}
     887
     888
     889static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp)
     890{
     891    PS_ASSERT_PTR_NON_NULL(pendingExp, NULL);
     892
     893    return p3PendingExpRowAlloc(
     894        pendingExp->exp_tag,
     895        0x0,        // p3 version
    883896        pendingExp->p2_version,
    884897        pendingExp->label
    885898    );
    886899}
    887 
    888 
    889 static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp)
    890 {
    891     PS_ASSERT_PTR_NON_NULL(pendingExp, NULL);
    892 
    893     return p3PendingExpRowAlloc(
    894         pendingExp->exp_tag,
    895         pendingExp->p1_version,
    896         pendingExp->p2_version,
    897         pendingExp->label
    898     );
    899 }
Note: See TracChangeset for help on using the changeset viewer.