#ifndef _HOTPLUGD_IMPL_H
#define _HOTPLUGD_IMPL_H
#ifdef __cplusplus
extern "C" {
#endif
#define HP_IS_ENABLED(s) (s == DDI_HP_CN_STATE_ENABLED)
#define HP_IS_ONLINE(s) ((s == DDI_HP_CN_STATE_ONLINE) || \
(s == DDI_HP_CN_STATE_MAINTENANCE))
#define HP_IS_OFFLINE(s) ((s == DDI_HP_CN_STATE_PORT_EMPTY) || \
(s == DDI_HP_CN_STATE_PORT_PRESENT) || \
(s == DDI_HP_CN_STATE_OFFLINE))
#define HP_PRIVATE_BUF_SZ 4096
#define S_DEVICES "/devices"
void log_err(char *fmt, ...);
void log_info(char *fmt, ...);
void hp_dprintf(char *fmt, ...);
boolean_t door_server_init(void);
void door_server_fini(void);
int getinfo(const char *path, const char *connection, uint_t flags,
hp_node_t *rootp);
int changestate(const char *path, const char *connection, int state,
uint_t flags, int *old_statep, hp_node_t *resultsp);
int private_options(const char *path, const char *connection,
hp_cmd_t cmd, const char *options, char **resultsp);
int copy_usage(hp_node_t root);
int rcm_resources(hp_node_t root, char ***rsrcsp);
void free_rcm_resources(char **rsrcs);
int rcm_offline(char **rsrcs, uint_t flags, hp_node_t root);
void rcm_online(char **rsrcs);
void rcm_remove(char **rsrcs);
#ifdef __cplusplus
}
#endif
#endif