diff options
Diffstat (limited to 'runtime/cryprov.h')
-rw-r--r-- | runtime/cryprov.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/cryprov.h b/runtime/cryprov.h index 0c3053d4..5690904d 100644 --- a/runtime/cryprov.h +++ b/runtime/cryprov.h @@ -42,8 +42,9 @@ BEGINinterface(cryprov) /* name must also be changed in ENDinterface macro! */ rsRetVal (*Encrypt)(void *pFileInstData, uchar *buf, size_t *lenBuf); rsRetVal (*Decrypt)(void *pFileInstData, uchar *buf, size_t *lenBuf); rsRetVal (*OnFileClose)(void *pFileInstData, off64_t offsLogfile); - void (*SetDeleteOnClose)(void *pFileInstData, int val); rsRetVal (*DeleteStateFiles)(uchar *logfn); + rsRetVal (*GetBytesLeftInBlock)(void *pFileInstData, ssize_t *left); + void (*SetDeleteOnClose)(void *pFileInstData, int val); ENDinterface(cryprov) #define cryprovCURR_IF_VERSION 3 /* increment whenever you change the interface structure! */ #endif /* #ifndef INCLUDED_CRYPROV_H */ |