Advertisement
Guest User

Untitled

a guest
Jan 25th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.85 KB | None | 0 0
  1. typedef void (*notify)(guint value);
  2. int store_autolock_setting_in_cal(int autolock);
  3. int store_timeout_setting_in_cal(int timeout);
  4. int get_autolock_setting_from_cal(int *autolock);
  5. int get_timeout_setting_from_cal(int *timeout);
  6. int validate_devlock_code(const char *key);
  7. int change_devlock_code(const char *newkey, const char *oldkey);
  8. void devlock_notify_remove(guint key);
  9. int devlock_timeout_notify_add(notify notify_func, guint *key, gpointer zero);
  10. int devlock_autorelock_notify_add(notify notify_func, guint *key, gpointer zero);
  11. int set_passwd_total_failed_count(int count);
  12. int set_passwd_failed_count(int count);
  13. int get_passwd_total_failed_count(int *value);
  14. int get_passwd_failed_count(int *value);
  15. void set_timeout_key(int value);
  16. void get_timeout_key(int *value);
  17. void set_autolock_key(int value);
  18. void get_autolock_key(int *value);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement