lfds710_misc_query

From liblfds.org
Jump to navigation Jump to search

Source Files

└───liblfds710
    ├───inc
    │   └───liblfds710
    │           lfds710_misc.h
    └───src
        └───lfds710_liblfds
                lfds710_misc_query.c

Enums

enum lfds710_misc_query
{
  LFDS710_MISC_QUERY_GET_BUILD_AND_VERSION_STRING
};

Prototype

void lfds710_misc_query( enum lfds710_misc_query query_type,
                         void *query_input,
                         void *query_output );

Parameters

enum lfds710_misc_query query_type

Indicates which query to perform.

void *query_input

A pointer to data, or data cast to a void pointer, which is input data required by query indicated by query_type.

void *query_output

A pointer to store into which the requested information is placed, where the output data varies by the query indicted by query_type.

Queries

LFDS710_MISC_QUERY_GET_BUILD_AND_VERSION_STRING

void *query_input
This argument is NULL
void *query_output
Points to a char const *, which is set to point to the build and version string for the library. The build and version string is statically allocated within the library, and query_output is merely set to point to it; no copying occurs.

Notes

No notes.

See Also