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
_______________________________________________
vala-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/vala-list