JonT <[EMAIL PROTECTED]> wrote:
>     output[4] = dataToOutput[0]; //the data bytes

This line only sets the value of one byte.  If your intent is to copy
all of the data from dataToOutput to output, you need:

   MemMove(&output[4], dataToOutput, len);

-- 
    -M-                                              [EMAIL PROTECTED]

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to