mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-14 12:08:04 +08:00
17 lines
310 B
C
17 lines
310 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <stdarg.h>
|
|
|
|
typedef struct notify_request {
|
|
char useless1[45];
|
|
char message[3075];
|
|
} notify_request_t;
|
|
|
|
|
|
int sceKernelSendNotificationRequest(int, notify_request_t*, size_t, int);
|
|
|
|
|
|
void notify_send(const char* fmt, ...); |