[Kernel] Suffix export functions with _entry.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
******************************************************************************
|
||||
* Xenia : Xbox 360 Emulator Research Project *
|
||||
******************************************************************************
|
||||
* Copyright 2020 Ben Vanik. All rights reserved. *
|
||||
* Copyright 2022 Ben Vanik. All rights reserved. *
|
||||
* Released under the BSD license - see LICENSE in the root for more details. *
|
||||
******************************************************************************
|
||||
*/
|
||||
@@ -54,7 +54,7 @@ uint32_t GetQueryFileInfoMinimumLength(uint32_t info_class) {
|
||||
}
|
||||
}
|
||||
|
||||
dword_result_t NtQueryInformationFile(
|
||||
dword_result_t NtQueryInformationFile_entry(
|
||||
dword_t file_handle, pointer_t<X_IO_STATUS_BLOCK> io_status_block_ptr,
|
||||
lpvoid_t info_ptr, dword_t info_length, dword_t info_class) {
|
||||
uint32_t minimum_length = GetQueryFileInfoMinimumLength(info_class);
|
||||
@@ -179,7 +179,7 @@ uint32_t GetSetFileInfoMinimumLength(uint32_t info_class) {
|
||||
}
|
||||
}
|
||||
|
||||
dword_result_t NtSetInformationFile(
|
||||
dword_result_t NtSetInformationFile_entry(
|
||||
dword_t file_handle, pointer_t<X_IO_STATUS_BLOCK> io_status_block,
|
||||
lpvoid_t info_ptr, dword_t info_length, dword_t info_class) {
|
||||
uint32_t minimum_length = GetSetFileInfoMinimumLength(info_class);
|
||||
@@ -277,7 +277,7 @@ uint32_t GetQueryVolumeInfoMinimumLength(uint32_t info_class) {
|
||||
}
|
||||
}
|
||||
|
||||
dword_result_t NtQueryVolumeInformationFile(
|
||||
dword_result_t NtQueryVolumeInformationFile_entry(
|
||||
dword_t file_handle, pointer_t<X_IO_STATUS_BLOCK> io_status_block_ptr,
|
||||
lpvoid_t info_ptr, dword_t info_length, dword_t info_class) {
|
||||
uint32_t minimum_length = GetQueryVolumeInfoMinimumLength(info_class);
|
||||
|
||||
Reference in New Issue
Block a user