[Vala] fuse.vapi help
- From: Matt Harrison <matt61408 gmail com>
- To: vala-list gnome org
- Subject: [Vala] fuse.vapi help
- Date: Wed, 22 Dec 2010 15:33:25 -0500
Hi,
I'm trying to just do a basic example of using the fuse.vapi file to learn
how it works. I'm basically trying to remake this example
http://code.google.com/p/fusepy/source/browse/trunk/memory.py but I'm not
really sure how to begin.
At the moment I'm trying something simple like this:
int main (string[] args)
{
void* user_data = null;
Fuse.Operations oper = Fuse.Operations() {
mkdir = (path, mode) => {
stdout.printf("mkdir\n");
}
};
Fuse.main(args, oper, user_data);
return 0;
}
But I've no idea what I'm doing. Thanks for any help on how to get started
with this.
Matt
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]