IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2006, 6:00:41 PM (20 years ago)
Author:
jhoblitt
Message:

add basic p2 masking support and the p2Mask table

File:
1 edited

Legend:

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

    r9691 r9764  
    680680    PS_ASSERT_PTR_NON_NULL(exp, NULL);
    681681
     682    // optional
     683    bool status = false;
     684    psString label = psMetadataLookupStr(&status, config->args, "-label");
     685    if (!status) {
     686        psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -label");
     687        return false;
     688    }
     689
    682690    return p2PendingExpRowAlloc(
    683691        exp->exp_tag,
    684692        "my recipe",
    685693        0xff, // XXX calc version number
    686         0xff // XXX calc version number
     694        0xff, // XXX calc version number
     695        label
    687696    );
    688697}
Note: See TracChangeset for help on using the changeset viewer.