Prosody generic: API: sm_get_firmware_info
	
Prototype Definition
int sm_get_firmware_info(struct sm_fwinfo_parms *fp)
Parameters
- *fp
 - 
a structure of the following type:
typedef struct sm_fwinfo_parms {
	tSMModuleId module;					/* in */
	tSM_UT32 position;					/* inout */
	tSM_UT32 tasktypecode;					/* out */
	tSM_UT32 version;					/* out */
} SM_FWINFO_PARMS;
 
Description
Obsolete function that is not supported on ProsodyX cards or 
with ProsodyS v3 servers.
Fields
- module	(Deprecated)
 - A value obtained from
sm_open_module()
which indicates the module to examine.
 - position	(Deprecated)
 - The position to examine. Start this at zero and each successive
call will advance it to consider the next position.
 - tasktypecode	(Deprecated)
 - The task type code of the firmware module. This value is zero if
this position is empty.
 - version	(Deprecated)
 - The version code of the firmware module. This value is zero if
this position is empty.
 
Returns
0
 if call completed successfully, otherwise a standard error such as:
- ERR_SM_DEVERR - device error
 - ERR_SM_NO_SUCH_MODULE - if no such module exists
 
This function is part of the Prosody generic API.