This commit is contained in:
Nishi 2025-11-16 12:59:20 +09:00
commit 372775f34c
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 17 additions and 0 deletions

View file

@ -5,5 +5,6 @@
#include <MDE/File.h>
#include <MDE/String.h>
#include <MDE/Users.h>
#endif

16
include/MDE/Users.h Normal file
View file

@ -0,0 +1,16 @@
#ifndef __MDE_USERS_H__
#define __MDE_USERS_H__
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
void MDEListUsers(void(*call)(const char* name, void* user), void* user);
#ifdef __cplusplus
}
#endif
#endif