SimDeinitialize (Compact 2013)
3/26/2014
The SimDeinitialize function de-initializes a handle for an HSIM.
Syntax
HRESULT SimDeinitialize (
HSIM hSim
);
Parameters
- hSim
A valid HSIM handle that is to be de-initialized.
Return Value
HRESULT is S_OK for success, or one of the SIM_E error constants defined in the SIM Manager Error Constants table.
Example
HRESULT hr;
HSIM hSim;
hr = SimInitialize( SIM_INIT_NONE, NULL, NULL, &hSim );
// SIM Manager operations go here
// Finished using the SIM Manager
hr = SimDeinitialize( hSim );
Remarks
This function must be used as a pair with the SimInitialize function. You must use them in the sequence:
- SimInitialize
- Other SIM Manager functions
- SimDeinitialize
Using these functions in any other sequence will produce errors.
Requirements
Header |
simmgr.h |
Library |
sim.lib |
See Also
Reference
SIM Manager Functions
SimInitialize
SimDeinitialize
SIM Manager Reference