> From: Robert McKenzie [mailto:[EMAIL PROTECTED]]
> I develop in CodeWarrior on Windows.
> It's constructor doesn't know from 'taic' resources.
> Does anyone know how I can get such a resource included in my prc?

Add a Rez script file (file extension ".r") to your project.  Its content
should be like this:

    type 'taic' (1000)
    {
        cstring;
    };

    resource 'taic' (1000)
    {
        "Main"; // desired installation category name
    };

Or preferably put the 'type' declaration in a global header file so you can
reuse it in other projects (if your environment is set up that way) and then
#include it into the .r file containing the 'resource' definition for each
individual project.

-slj-

Reply via email to