13 lines
333 B
C
13 lines
333 B
C
|
|
#ifndef AN6000_DECODE_H
|
|
#define AN6000_DECODE_H
|
|
#include "../rm_include.h"
|
|
#if (RM_MODEL == RM_MODEL_TYPE_AN6000)
|
|
|
|
int decrypt_an6000(const wchar_t *filename);
|
|
int encrypt_an6000(const wchar_t *filename);
|
|
bool is_encrypted_an6000(const wchar_t *filename);
|
|
|
|
#endif // #if (RM_MODEL == RM_MODEL_TYPE_AN6000)
|
|
#endif // AN6000_DECODE_H
|