]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/testkext/testvmx.h
xnu-1456.1.26.tar.gz
[apple/xnu.git] / tools / tests / testkext / testvmx.h
1 /*
2 * testvmx.h
3 * testkext
4 *
5 * Created by Shantonu Sen on 10/24/08.
6 * Copyright 2008 Apple Computer, Inc.. All rights reserved.
7 *
8 */
9
10 #include <IOKit/IOService.h>
11 #include <IOKit/IOLib.h>
12
13 class testvmx : public IOService {
14 OSDeclareDefaultStructors(testvmx);
15
16 virtual bool start( IOService * provider );
17
18 virtual void stop( IOService * provider );
19
20 };