| Index: fpdfsdk/include/formfiller/FFL_Utils.h
|
| diff --git a/fpdfsdk/include/formfiller/FFL_Utils.h b/fpdfsdk/include/formfiller/FFL_Utils.h
|
| index 4b77aa222ec16c95e057b9a1ee91b0f8be97f1b8..94848bef3ec21528baa941158c3e26d44e6a5cda 100644
|
| --- a/fpdfsdk/include/formfiller/FFL_Utils.h
|
| +++ b/fpdfsdk/include/formfiller/FFL_Utils.h
|
| @@ -7,7 +7,10 @@
|
| #ifndef _FFL_UTILS_H_
|
| #define _FFL_UTILS_H_
|
|
|
| -#define FFL_BASE_USERUNIT 1.0f / 72.0f
|
| +#include "../../../core/include/fpdfapi/fpdf_parser.h"
|
| +#include "../../../core/include/fxcrt/fx_memory.h"
|
| +
|
| +#define FFL_BASE_USERUNIT (1.0f / 72.0f)
|
|
|
| template<class T> T FFL_MIN (const T & i, const T & j) { return ((i < j) ? i : j); }
|
| template<class T> T FFL_MAX (const T & i, const T & j) { return ((i > j) ? i : j); }
|
|
|