hle: kernel: Rename Process to KProcess.

This commit is contained in:
bunnei
2021-04-23 22:04:28 -07:00
parent bf380b8584
commit 2a7eff57a8
83 changed files with 249 additions and 247 deletions

View File

@ -25,7 +25,7 @@ class NACP;
namespace Kernel {
struct AddressMapping;
class Process;
class KProcess;
} // namespace Kernel
namespace Loader {
@ -165,7 +165,7 @@ public:
*
* @return The status result of the operation.
*/
virtual LoadResult Load(Kernel::Process& process, Core::System& system) = 0;
virtual LoadResult Load(Kernel::KProcess& process, Core::System& system) = 0;
/**
* Get the code (typically .code section) of the application