mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-24 13:52:53 +02:00
17 lines
395 B
C
17 lines
395 B
C
/**
|
|
* @file friend.h
|
|
* @brief Friends (friend:*) service IPC wrapper.
|
|
* @author yellows8
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
#include "../services/sm.h"
|
|
|
|
/// InAppScreenName
|
|
typedef struct {
|
|
char name[0x40]; ///< UTF-8 string, NUL-terminated.
|
|
u64 languageCode; ///< LanguageCode, see set.h.
|
|
} FriendsInAppScreenName;
|
|
|