2.1 Function Syntax Conventions
The CSP functions use the following syntax:
int ec_function(device_handle, parameter1, ... parameterN)
where:
int
- refers to the data type integer.
ec_function
- represents the function name. All CSP-specific functions begin with "ec".
device_handle
- represents the device handle, which is a numerical reference to a device, obtained when a device is opened. The device handle is used for all operations on that device.
parameter1
- represents the first parameter.
parameterN
- represents the last parameter.