ScBinFromHexBounded
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
Converts the specified portion of a string representation of a hexadecimal number into a binary number.
Header file: |
Mapiutil.h |
Implemented by: |
MAPI |
Called by: |
Client applications and service providers |
SCODE ScBinFromHexBounded(
LPSTR sz,
LPBYTE pb,
ULONG cb
);
Parameters
sz
[in] Pointer to the null-terminated string to be converted. Valid characters include the hexadecimal characters 0 through 9 and both uppercase and lowercase characters a through f.pb
[out] Pointer to the returned binary number.cb
[in] Size, in bytes, of the pb parameter.
Return Value
S_OK
Conversion was successful.MAPI_E_CALL_FAILED
Invalid characters were encountered.