Implement NCM

This commit is contained in:
Adubbz
2019-07-25 22:53:32 +10:00
parent 72dd25a99e
commit bb26633cce
45 changed files with 6236 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
/*
* Copyright (c) 2019 Adubbz
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ncm_rights_cache.hpp"
namespace sts::ncm::impl {
namespace {
RightsIdCache g_rights_id_cache;
}
RightsIdCache* GetRightsIdCache() {
return &g_rights_id_cache;
}
}