1 #include <sys/types.h> /* size_t */ 2 3 /* An interface providing a way of opening filesystem objects. */ 4 5 interface Opener 6 { 7 /* Obtain an opener context for subsequent open operations. */ 8 9 [opcode(13)] void context(out cap context); 10 };