aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/sm/controller.h
AgeCommit message (Collapse)Author
2021-07-14service: Append service name prefix to common filenamesMorph
2020-11-26service: Eliminate usages of the global system instanceLioncash
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-06-29service: Update function tablesVolcaEM
2018-09-06core/core: Remove unnecessary sm/controller includeLioncash
The only reason this include was necessary, was because the constructor wasn't defaulted in the cpp file and the compiler would inline it wherever it was used. However, given Controller is forward declared, all those inlined constructors would see an incomplete type, causing a compilation failure. So, we just place the constructor in the cpp file, where it can see the complete type definition, allowing us to remove this include.
2018-04-19service: Use nested namespace specifiers where applicableLioncash
Tidies up namespace declarations
2018-01-17controller: Use DuplicateSession for DuplicateSessionEx.bunnei
2018-01-13yuzu: Update license text to be consistent across project.bunnei
2017-12-29controller: Implement DuplicateSession.bunnei
2017-12-28service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.bunnei
2017-10-15hle: Implement ConvertSessionToDomain, various cleanups.bunnei
2017-10-14hle: Initial implementation of NX service framework and IPC.bunnei