Résumé | |
Interface prefix | Co |
Number of functions | 3 |
Description | Set of functions giving access to VISION.'s configuration (paths, languages,...) |
Prototype | char* cdecl CoGetLDVPath(void) |
Parameters | None |
Return | A pointer to string holding LDV path |
Description | Used to know what is LDV path. Enables the LDV to load a file from there (e.g. LOD, INI). This path is passed as a parameter to GetParams function (optional). |
Remarks | VAPI returns a pointer to VISION.'x configuration. You shall NOT change data from this pointer; make your own copy if you need ! |
VAPI Version | 1.02 or more |
Prototype | char* cdecl CoGetCurrentLanguage(void) |
Parameters | None |
Return | A pointer to string holding VISION.''s current language |
Description | Used to know which language is currently used. Use with CoGetLDVPath, you can locate the INI file for this LDV, just concatenate both strings. |
Remarks | VAPI returns a pointer to VISION.'x configuration. You shall NOT change data from this pointer; make your own copy if you need ! |
VAPI Version | 1.02 or more |
Prototype | unsigned long cdecl CoGetFunctionOptimizations(void *function) |
Parameters | Pointer to VAPI function for which you'd like to know if some optimization is available |
Return | A 32bit word which following bit meaning: Bit 0 set This function is 68030 optimized Bit 1 set : This function is DSP 56001 optimzed |
Description | Used to know if a function has specific processor optimzations to let the progress window know about this (see Progress Interface : PrOptimize). Not that useful but so sexy ! |
Remarks | If the machine running this call has no 68030 or DSP support, this call won"t return any optimization, which is pretty logical as it won"t be used even if exisitng. |
VAPI Version | 1.03 or more |