X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fencrypted-file.h;h=7add68042d23de14a72c1391f807ccc7b3308dbf;hb=794fc7f31c6748f0f19db7d9b5e8345f00db86c3;hp=d089a046f01a846362cbf2b2268489d486933de8;hpb=2ea422dcad13f121dfb5a2f390c3e456f5bcec83;p=pspp diff --git a/src/data/encrypted-file.h b/src/data/encrypted-file.h index d089a046f0..7add68042d 100644 --- a/src/data/encrypted-file.h +++ b/src/data/encrypted-file.h @@ -23,12 +23,12 @@ /* Reading encrypted SPSS files. */ struct encrypted_file; +struct file_handle; -int encrypted_file_open (struct encrypted_file **, const char *filename); +int encrypted_file_open (struct encrypted_file **, const struct file_handle *); bool encrypted_file_unlock (struct encrypted_file *, const char *password); +bool encrypted_file_unlock__ (struct encrypted_file *, const char *password); size_t encrypted_file_read (struct encrypted_file *, void *, size_t); int encrypted_file_close (struct encrypted_file *); -bool encrypted_file_is_sav (const struct encrypted_file *); - #endif /* encrypted-file.h */