Files
2025-03-08 16:40:56 +08:00

24 lines
392 B
C

#ifndef __SH_CONF_H__
#define __SH_CONF_H__
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "sh_app.h"
typedef struct _SH_CONF_S
{
int mode;
DiamId_t pi_diamid_peer;
DiamId_t pi_diamid_realm_peer;
}SH_CONF_S;
extern SH_CONF_S g_sh_conf_ext;
int shParse(struct fd_config * conf);
#endif /* __SH_CONF_H__ */