xref: /xnu-10002.81.5/tools/tests/testkext/testvmx.h (revision 5e3eaea39dcf651e66cb99ba7d70e32cc4a99587) !
1 /*
2  *  testvmx.h
3  *  testkext
4  *
5  */
6 
7 #include <IOKit/IOService.h>
8 #include <IOKit/IOLib.h>
9 
10 class testvmx : public IOService {
11 	OSDeclareDefaultStructors(testvmx);
12 
13 	virtual bool start( IOService * provider );
14 
15 	virtual void stop( IOService * provider );
16 };
17