2025-11-25 05:31:58 +09:00
|
|
|
#ifndef __MDE_CORE_USERS_H__
|
|
|
|
|
#define __MDE_CORE_USERS_H__
|
2025-11-16 12:59:20 +09:00
|
|
|
|
|
|
|
|
#include <MDE/MachDep.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-11-17 18:20:56 +09:00
|
|
|
void MDEUsersList(void (*call)(const char* name, void* user), void* user);
|
2025-11-16 12:59:20 +09:00
|
|
|
|
2025-11-25 11:15:35 +09:00
|
|
|
char* MDEUsersGetUsername(void);
|
|
|
|
|
|
2025-11-16 12:59:20 +09:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|