You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log.h 229B

1234567891011
  1. #ifndef LOG_H
  2. # define LOG_H
  3. # include <stdint.h>
  4. void log_progress(uint32_t uid, uint8_t type, uint64_t key, uint32_t block,
  5. uint32_t diff, uint32_t auth);
  6. void log_key(uint32_t block, uint64_t key);
  7. #endif /* !LOG_H */