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