/* * regpath.h * * */ #ifndef REGPATH_H #define REGPATH_H #ifdef __cplusplus extern "C" { #endif HKEY open_reg_top(char *regpath); HKEY open_reg(char *regpath, unsigned long access, char **valptr); void close_reg(HKEY); #ifdef __cplusplus } #endif #endif /* REGPATH_H */