![]() |
![]() |
Defines | |
| #define | VISA_EOK 0 |
| Success. | |
| #define | VISA_ERUNTIME -1 |
| Internal runtime error. | |
| #define | VISA_EFAIL -2 |
| General system error. | |
| #define | VISA_ETIMEOUT -100 |
| VISA_wait() timed out. | |
| #define | VISA_FOREVER Engine_FOREVER |
| Special value for timeout parameter of VISA_wait(). | |
Typedefs | |
| typedef Int | VISA_Status |
| VISA result data type. | |
Functions | |
| Void | VISA_getContext (VISA_Handle visa, UInt32 *pContext) |
| Get optional context parameter. | |
| Ptr | VISA_getCodecClassConfig (VISA_Handle visa) |
| Get codec-specific values for the VISA class-specific (or codec-specific if the codec doesn't extend VISA) stub-and/ or-skeleton configuration data (that some classes have). | |
| Void | VISA_setContext (VISA_Handle visa, UInt32 context) |
| Set optional context parameter. | |
| Bool | VISA_isLocal (VISA_Handle visa) |
| Indicates whether VISA codecs run on a remote or local CPU. | |
| #define VISA_EOK 0 |
Success.
| #define VISA_ERUNTIME -1 |
Internal runtime error.
| #define VISA_EFAIL -2 |
General system error.
| #define VISA_ETIMEOUT -100 |
VISA_wait() timed out.
| #define VISA_FOREVER Engine_FOREVER |
Special value for timeout parameter of VISA_wait().
| typedef Int VISA_Status |
VISA result data type.
| Void VISA_getContext | ( | VISA_Handle | visa, | |
| UInt32 * | pContext | |||
| ) |
Get optional context parameter.
| [in] | visa | Handle to an algorithm instance. |
| [out] | pContext | Location to store context. |
visa must be a valid algorithm instance handle.
pContext must be a valid pointer.
| Ptr VISA_getCodecClassConfig | ( | VISA_Handle | visa | ) |
Get codec-specific values for the VISA class-specific (or codec-specific if the codec doesn't extend VISA) stub-and/ or-skeleton configuration data (that some classes have).
| [in] | visa | Handle to an algorithm instance. |
| address | of the codec class config data structure, or NULL if codec class config data not defined for the codec; the format of the structure is class-specific, and the data in it is codec- specific |
visa must be a valid algorithm instance handle. | Void VISA_setContext | ( | VISA_Handle | visa, | |
| UInt32 | context | |||
| ) |
Set optional context parameter.
| [in] | visa | Handle to an algorithm instance. |
| [in] | context | Context. |
visa must be a valid algorithm instance handle.| Bool VISA_isLocal | ( | VISA_Handle | visa | ) |
Indicates whether VISA codecs run on a remote or local CPU.
| false | VISA codecs run on remote CPU | |
| true | VISA codecs run on local CPU |