jedioutcast/code/encryption/cpp_interface.h

20 lines
424 B
C
Raw Normal View History

2013-04-04 14:52:42 +00:00
#ifndef __CPP_INTERFACE_H
#define __CPP_INTERFACE_H
#ifdef __cplusplus
extern "C"
{
#endif
void *ENCRYPT_fopen(const char *Name, const char *Mode);
void ENCRYPT_fclose(void *File);
int ENCRYPT_fseek(void *File, long offset, int origin);
size_t ENCRYPT_fread(void *buffer, size_t size, size_t count, void *File);
long ENCRYPT_ftell(void *File);
#ifdef __cplusplus
}
#endif
#endif // __CPP_INTERFACE_H