mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-18 09:55:25 +01:00
17 lines
360 B
C
17 lines
360 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
|
|
u8 unk_x8[0x10]; ///< Unknown
|
|
} PdmApplicationPlayStatistics;
|
|
|