Gary Miller writes:
> I'm still curious as to what the POSE feature is that is described below:
>
> *    Install a 'pose' feature so that applications can tell 
> if they are running under Poser or not.

If you use Insider or some other application that can list all the
extant features, you'll see a 'pose' #0 feature with a value of 0.
Hence the (obvious) code below will do the trick:

        DWord temp;
        if (FtrGet ('pose', 0, &temp) == ftrErrNoSuchFtr)
          on_the_device ();
        else
          on_poser ();

(Assuming the bloody thing doesn't ErrFatalAlert() for you... :-))

    John   "`feature' is a technical term :-)"

Reply via email to