Merge pull request #888 from lioncash/caps

service: Add capture services
This commit is contained in:
bunnei 2018-08-01 21:34:28 -04:00 committed by GitHub
commit 746d7d4d28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 173 additions and 0 deletions

View file

@ -24,6 +24,7 @@
#include "core/hle/service/bpc/bpc.h"
#include "core/hle/service/btdrv/btdrv.h"
#include "core/hle/service/btm/btm.h"
#include "core/hle/service/caps/caps.h"
#include "core/hle/service/erpt/erpt.h"
#include "core/hle/service/es/es.h"
#include "core/hle/service/eupld/eupld.h"
@ -209,6 +210,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
BPC::InstallInterfaces(*sm);
BtDrv::InstallInterfaces(*sm);
BTM::InstallInterfaces(*sm);
Capture::InstallInterfaces(*sm);
ERPT::InstallInterfaces(*sm);
ES::InstallInterfaces(*sm);
EUPLD::InstallInterfaces(*sm);