diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-05-27 16:07:42 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-05-27 16:07:42 -0700 |
commit | 14f57a153dcbc4c5fedeffe12a3b4f915cc5d558 (patch) | |
tree | c30bc8fde0acbac964db8bc9e96e893d57cc29f8 /core/include/fdrm | |
parent | cddfde0cddbc8467e0d5fa04c30405ee257750fc (diff) | |
download | pdfium-14f57a153dcbc4c5fedeffe12a3b4f915cc5d558.tar.xz |
Remove rendundant ../include from paths of files in include/ directory
Tiny bit of tidying I noticed while trying to figure out include rules.
In other words,
cd core/include
git grep 'include.*include'
git grep 'include.*src'
Should produce no output, and
cd fpdfsdk/include
git grep 'include.*include' | grep -v ../core/include
git grep 'include.*src'
Should produce no output as well.
Fix some IWYU, header guards, include ordering, whitespace along the way.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1162453003
Diffstat (limited to 'core/include/fdrm')
-rw-r--r-- | core/include/fdrm/fx_crypt.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/core/include/fdrm/fx_crypt.h b/core/include/fdrm/fx_crypt.h index ec7d55ab8c..adbdf8fa23 100644 --- a/core/include/fdrm/fx_crypt.h +++ b/core/include/fdrm/fx_crypt.h @@ -1,14 +1,18 @@ // Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. - + // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FX_CRYPT_H_ -#define _FX_CRYPT_H_ +#ifndef FX_CRYPT_H_ +#define FX_CRYPT_H_ + +#include "../fxcrt/fx_basic.h" + #ifdef __cplusplus extern "C" { #endif + void CRYPT_ArcFourCryptBlock(FX_LPBYTE data, FX_DWORD size, FX_LPCBYTE key, FX_DWORD keylen); void CRYPT_ArcFourSetup(FX_LPVOID context, FX_LPCBYTE key, FX_DWORD length); void CRYPT_ArcFourCrypt(FX_LPVOID context, FX_LPBYTE data, FX_DWORD size); @@ -37,7 +41,9 @@ void CRYPT_SHA512Update(FX_LPVOID context, FX_LPCBYTE data, FX_DWORD size); void CRYPT_SHA512Finish(FX_LPVOID context, FX_BYTE digest[64]); void CRYPT_SHA512Generate(FX_LPCBYTE data, FX_DWORD size, FX_BYTE digest[64]); void CRYPT_SetPubKeyDecryptor(FX_BOOL (*func)(FX_LPCBYTE pData, FX_DWORD size, FX_LPBYTE data_buf, FX_DWORD& data_len)); + #ifdef __cplusplus }; #endif -#endif + +#endif // FX_CRYPT_H_ |