Help for this page

Select Code to Download


  1. or download this
       #!/usr/bin/perl
    
       use strict;
    ...
    
       # It dies here, line 23
       $pdb->addRecordRaw($rec,0,0,0);
    
  2. or download this
       Can't call method "Raw" without a package or object reference
    
  3. or download this
       int addRecordRaw(self, data, uid, attr, category)
    
          PDA::Pilot::File *self
    ...
          }
          OUTPUT:
          RETVAL
    
  4. or download this
       sub Raw {
          # Just copy the "raw" item straight through
          my($self) = @_;
          return $self->{raw};
       }