CUFFT - CUFFT_SHUTDOWN_FAILED

Hi

The CUDA CUFFT Library pdf Pg-00000-003_V2.0 April 2008 states on p2:

“CUFFT_SHUTDOWN_FAILED The CUFFT library failed to shut down.”

However, if I setup an if-else block to catch all cufftResult values:

//…
else if (result == CUFFT_SHUTDOWN_FAILED)
//…

the compiler complains:

“error: identifier “CUFFT_SHUTDOWN_FAILED” is undefined”

Am I doing something wrong is or this a known error?

Cheers

Graham