| Index: fpdfsdk/src/fpdfview.cpp
|
| diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp
|
| index 70494e02a2fd24eed1156d30197a09b8792416af..49dabe300b4d43038f0308447f014747460d260a 100644
|
| --- a/fpdfsdk/src/fpdfview.cpp
|
| +++ b/fpdfsdk/src/fpdfview.cpp
|
| @@ -340,6 +340,17 @@ DLLEXPORT unsigned long STDCALL FPDF_GetDocPermissions(FPDF_DOCUMENT document)
|
| return pDict->GetInteger("P");
|
| }
|
|
|
| +DLLEXPORT int STDCALL FPDF_GetSecurityHandlerRevision(FPDF_DOCUMENT document)
|
| +{
|
| + if (document == NULL) return -1;
|
| + CPDF_Document*pDoc = (CPDF_Document*)document;
|
| + CPDF_Parser* pParser = (CPDF_Parser*)pDoc->GetParser();
|
| + CPDF_Dictionary* pDict = pParser->GetEncryptDict();
|
| + if (pDict == NULL) return -1;
|
| +
|
| + return pDict->GetInteger("R");
|
| +}
|
| +
|
| DLLEXPORT int STDCALL FPDF_GetPageCount(FPDF_DOCUMENT document)
|
| {
|
| if (document == NULL) return 0;
|
|
|