Add stub for System Service Descriptor Table accessor routine
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
#include <ke/shdata.hh>
|
||||
#include <ke/spinlock.hh>
|
||||
#include <ke/sysres.hh>
|
||||
#include <ke/sysserv.hh>
|
||||
#include <ke/systime.hh>
|
||||
#include <ke/timer.hh>
|
||||
|
||||
|
||||
25
xtoskrnl/includes/ke/sysserv.hh
Normal file
25
xtoskrnl/includes/ke/sysserv.hh
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: xtoskrnl/includes/ke/sysserv.hh
|
||||
* DESCRIPTION: System Services Descriptor Table
|
||||
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef __XTOSKRNL_KE_SYSSERV_HH
|
||||
#define __XTOSKRNL_KE_SYSSERV_HH
|
||||
|
||||
#include <xtos.hh>
|
||||
|
||||
|
||||
/* Kernel Library */
|
||||
namespace KE
|
||||
{
|
||||
class SystemServices
|
||||
{
|
||||
public:
|
||||
STATIC XTAPI PKSERVICE_DESCRIPTOR_TABLE GetSystemServicesDescriptorTable(VOID);
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* __XTOSKRNL_KE_SYSSERV_HH */
|
||||
Reference in New Issue
Block a user