Starts, configures, and terminates a session with the A3DLIBS. More...
Functions | |
A3DStatus | A3DDllInitialize (A3DInt32 iMajorVersion, A3DInt32 iMinorVersion) |
Starts a session with the A3DLIBS. More... | |
A3DStatus | A3DDllTerminate () |
Terminates a session with the A3DLIBS. More... | |
A3DStatus | A3DDllGetVersion (A3DInt32 *piMajorVersion, A3DInt32 *piMinorVersion) |
Gets the version identifiers for the currently installed A3DLIBS. More... | |
Starts, configures, and terminates a session with the A3DLIBS.
The functions in this section start and terminate a session with the A3DLIBS.
Starts a session with the A3DLIBS.
This function initializes the internal structures in the A3DLIBS.
iMajorVersion | The major version of the HOOPS Publish API. Set this value to A3D_DLL_MAJORVERSION |
iMinorVersion | The minor version of the HOOPS Publish API. Set this value to A3D_DLL_MINORVERSION |
A3DStatus A3DDllTerminate | ( | ) |
Terminates a session with the A3DLIBS.
This function terminates a session with the A3DLIBS. It deallocates memory it has previously allocated for its internal use.
You must call this function to end a session with the A3DLIBS.
Gets the version identifiers for the currently installed A3DLIBS.
This function returns the version of the currently installed A3DLIBS. Use these version identifiers to determine whether that library is compatible with your application. The value returned through the piMajorVersion
argument is identical to the Acrobat version identifier. The value returned through the piMinorVersion
argument is specific to the A3DLIBS.
To ensure compatibility, the A3D_DLL_MAJORVERSION must be identical to the major version of currently installed A3DLIBS, and the A3D_DLL_MINORVERSION must be less than or equal to the minor version of the currently installed A3DLIBS.
You can call A3DDllGetVersion anytime, even before calling A3DDllInitialize and after calling A3DDllTerminate. This function does not allocate memory.