logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

PX_get_data_long — Get long data field

Author

       This manual page was written by Uwe Steinmann uwe@steinmann.cx.

                                                                                             PX_GET_DATA_LONG(3)

Description

       Converts  a  data  field as it stored in the database file into a long integer for the host architecture.
       You should use this function instead of accessing the data directly.

       data points to the start of the data field in the record. It must be calculated by summing up  all  field
       length before the field to operate on and add it to the base pointer of the record.

              Note:

              This function is deprecated and obsolete if PX_retrieve_record(3) is used.

Name

       PX_get_data_long — Get long data field

Return Value

       Returns 0 if the value is NULL, -1 in case of an error and 1 otherwise.

See Also

PX_get_data_byte(3), PX_get_data_short(3), PX_get_data_double(3), PX_get_data_alpha(3)

Synopsis

       #include <paradox.h>

       int PX_get_data_long(pxdoc_t *pxdoc, char *data, int len, long *value)

See Also