Re: writing own CSP - do I have to implement all entry points?

From: Pieter Philippaerts (Pieter_at_nospam.mentalis.org)
Date: 04/29/04


Date: Thu, 29 Apr 2004 17:42:26 +0200


"Alain" <a-helfenstein@bluewin.ch> wrote in message
> Do I have to implement them (caling another CSP(MS Base CSP)),
> or can I return an error ERROR_CALL_NOT_IMPLEMENTED?

You do not have to implement them. I use the following code to handle these
functions:
    SetLastError(E_NOTIMPL);
    return FALSE;

Regards,
Pieter Philippaerts