2010-09-08 11:03:58 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <libfprint/fprint.h>
|
|
|
|
|
|
|
|
int main (int argc, char **argv)
|
|
|
|
{
|
2019-12-04 12:32:28 +01:00
|
|
|
FpContext *ctx;
|
2019-11-19 20:18:13 +01:00
|
|
|
|
2019-12-04 12:32:28 +01:00
|
|
|
ctx = fp_context_new ();
|
|
|
|
g_object_unref (ctx);
|
2019-11-19 20:18:13 +01:00
|
|
|
|
2019-12-04 12:32:28 +01:00
|
|
|
return 0;
|
2010-09-08 11:03:58 +01:00
|
|
|
}
|