>I need to include a 256 Byte long binary data ressource with CW (i'm
>running it on a windows machine).

Use Rez.  It works.  Create a .r file similar to below, but replace the junk
hex data below with your data in a similar fashion.  Add the .r file to your
CW project, and make sure you have the appropriate file mapping in settings.


/* something.r */

#define SOMETHING_RES_TYPE    'type'    /* change this */
#define SOMETHING_RES_ID      1000      /* change this, too */

data SOMETHING_RES_TYPE (SOMETHING_RES_ID) {
    $"4F35FF8790000000"
    $"FF234F35FF790000"
};

---- --- -- -
Matthew D Moss
[EMAIL PROTECTED]


Reply via email to