-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ring3: Added SysCallInstallMultipleProtocolInterfaces draft.
- Loading branch information
Mikhail Krichanov
committed
Feb 5, 2024
1 parent
5d084d3
commit 150771c
Showing
6 changed files
with
147 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** @file | ||
Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
SPDX-License-Identifier: BSD-3-Clause | ||
**/ | ||
|
||
#include "DxeMain.h" | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingSupported ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL | ||
) | ||
{ | ||
return EFI_UNSUPPORTED; | ||
} | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingStart ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL | ||
) | ||
{ | ||
return EFI_UNSUPPORTED; | ||
} | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingStop ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN UINTN NumberOfChildren, | ||
IN EFI_HANDLE *ChildHandleBuffer OPTIONAL | ||
) | ||
{ | ||
return EFI_UNSUPPORTED; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** @file | ||
Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
SPDX-License-Identifier: BSD-3-Clause | ||
**/ | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingSupported ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL | ||
); | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingStart ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL | ||
); | ||
|
||
EFI_STATUS | ||
EFIAPI | ||
CoreDriverBindingStop ( | ||
IN EFI_DRIVER_BINDING_PROTOCOL *This, | ||
IN EFI_HANDLE ControllerHandle, | ||
IN UINTN NumberOfChildren, | ||
IN EFI_HANDLE *ChildHandleBuffer OPTIONAL | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters