mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2025-11-15 07:38:12 +00:00
cleanup: Use FPI prefix for all the internal enum types
This commit is contained in:
@@ -7,16 +7,16 @@
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* FpPrintType:
|
||||
* @FP_PRINT_UNDEFINED: Undefined type, this happens prior to enrollment
|
||||
* @FP_PRINT_RAW: A raw print where the data is directly compared
|
||||
* @FP_PRINT_NBIS: NBIS minutiae comparison
|
||||
* FpiPrintType:
|
||||
* @FPI_PRINT_UNDEFINED: Undefined type, this happens prior to enrollment
|
||||
* @FPI_PRINT_RAW: A raw print where the data is directly compared
|
||||
* @FPI_PRINT_NBIS: NBIS minutiae comparison
|
||||
*/
|
||||
typedef enum {
|
||||
FP_PRINT_UNDEFINED = 0,
|
||||
FP_PRINT_RAW,
|
||||
FP_PRINT_NBIS,
|
||||
} FpPrintType;
|
||||
FPI_PRINT_UNDEFINED = 0,
|
||||
FPI_PRINT_RAW,
|
||||
FPI_PRINT_NBIS,
|
||||
} FpiPrintType;
|
||||
|
||||
/**
|
||||
* FpiMatchResult:
|
||||
@@ -33,8 +33,8 @@ typedef enum {
|
||||
void fpi_print_add_print (FpPrint *print,
|
||||
FpPrint *add);
|
||||
|
||||
void fpi_print_set_type (FpPrint *print,
|
||||
FpPrintType type);
|
||||
void fpi_print_set_type (FpPrint *print,
|
||||
FpiPrintType type);
|
||||
void fpi_print_set_device_stored (FpPrint *print,
|
||||
gboolean device_stored);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user