/* * This file is produced automatically. * Do not modify anything in here by hand. * * Created from source file * hello_if.m * with * /usr/src/sys/kern/makeobjops.pl * * See the source file for legal information */ #ifndef _hello_if_h_ #define _hello_if_h_ extern struct kobjop_desc hello_world_desc; typedef void hello_world_t(kobj_t o); static __inline void HELLO_WORLD(kobj_t o) { kobjop_t _m; KOBJOPLOOKUP(((kobj_t)o)->ops,hello_world); ((hello_world_t *) _m)(o); } extern struct kobjop_desc hello_static_world_desc; typedef void hello_static_world_t(kobj_class_t c); static __inline void HELLO_STATIC_WORLD(kobj_class_t c) { kobjop_t _m; KOBJOPLOOKUP(c->ops,hello_static_world); ((hello_static_world_t *) _m)(c); } #endif /* _hello_if_h_ */