There was an error fetching the commit references. Please try again later.
Service: Add new ServiceFramework framework for writing HLE services
The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations.
Showing
- src/core/CMakeLists.txt 1 addition, 1 deletionsrc/core/CMakeLists.txt
- src/core/hle/kernel/hle_ipc.cpp 2 additions, 0 deletionssrc/core/hle/kernel/hle_ipc.cpp
- src/core/hle/kernel/hle_ipc.h 34 additions, 2 deletionssrc/core/hle/kernel/hle_ipc.h
- src/core/hle/service/service.cpp 82 additions, 1 deletionsrc/core/hle/service/service.cpp
- src/core/hle/service/service.h 150 additions, 0 deletionssrc/core/hle/service/service.h
Please register or sign in to comment