blob: 284b8b811c12e99a4bbe83fa4937bbec162ed6a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "common/common_funcs.h"
namespace FileSys {
void AddCounter(void* counter, size_t counter_size, u64 value);
}
|