mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 21:02:39 +02:00
18 lines
475 B
C
18 lines
475 B
C
/**
|
|
* @file pdm.h
|
|
* @brief PDM (pdm:*) service IPC wrapper.
|
|
* @author yellows8
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../services/sm.h"
|
|
|
|
/// ApplicationPlayStatistics
|
|
typedef struct {
|
|
u64 titleID; ///< titleID
|
|
u64 totalPlayTime; ///< Total play-time in nanoseconds.
|
|
u64 totalLaunches; ///< Total times the application title was launched.
|
|
} PdmApplicationPlayStatistics;
|
|
|