mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-15 01:09:18 +00:00
.github
.vscode
Architecture
Core
Crash
Driver
DriverLoading
Driver.cpp
DriverAPI.cpp
api.hpp
Interrupts
Memory
Video
CPU.cpp
Debugger.cpp
Disk.cpp
Lock.cpp
PeripheralComponentInterconnect.cpp
Power.cpp
README.md
Random.cpp
StackGuard.cpp
Symbols.cpp
SystemManagementBIOS.cpp
Time.cpp
Timer.cpp
UndefinedBehaviorSanitization.c
UniversalAsynchronousReceiverTransmitter.cpp
crashhandler.hpp
smbios.hpp
ubsan.h
Execute
FileSystem
Files
GUI
Library
Network
Profiling
Recovery
SystemCalls
Tasking
Tests
include
.gitignore
DAPI.hpp
Doxyfile
Fex.hpp
KConfig.cpp
KThread.cpp
Kernel.cpp
LICENSE
Makefile
README.md
dump.sh
ipc.h
kernel.h
syscalls.h
11 lines
205 B
C++
11 lines
205 B
C++
#ifndef __FENNIX_KERNEL_DRIVER_API_H__
|
|
#define __FENNIX_KERNEL_DRIVER_API_H__
|
|
|
|
#include <types.h>
|
|
|
|
#include "../../DAPI.hpp"
|
|
|
|
extern KernelAPI KernelAPITemplate;
|
|
|
|
#endif // !__FENNIX_KERNEL_DRIVER_API_H__
|