From 5110c4743751145c4ae1934cd1d83bc6c55bb43f Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Sat, 17 May 2014 22:33:34 -0700 Subject: Initial commit. --- fpdfsdk/include/fpdfoom.h | 61 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 fpdfsdk/include/fpdfoom.h (limited to 'fpdfsdk/include/fpdfoom.h') diff --git a/fpdfsdk/include/fpdfoom.h b/fpdfsdk/include/fpdfoom.h new file mode 100644 index 0000000000..638b012b74 --- /dev/null +++ b/fpdfsdk/include/fpdfoom.h @@ -0,0 +1,61 @@ +// 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 _FPDFOOM_H_ +#define _FPDFOOM_H_ + +#ifndef _FPDFVIEW_H_ +#include "fpdfview.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct _OOM_INFO +{ + /** + * Version number of the interface. Currently must be 1. + **/ + int version; + + /** + * Method: FSDK_OOM_Handler + * Out-Of-Memory handling function. + * Interface Version: + * 1 + * Implementation Required: + * Yes + * Parameters: + * pThis - Pointer to the interface structure itself. + * Return value: + * None. + * */ + + void(*FSDK_OOM_Handler)(_OOM_INFO* pThis); +}OOM_INFO; + + +/** + * Function: FSDK_SetOOMHandler + * Setup A Out-Of-Memory handler for foxit sdk. + * Parameters: + * oomInfo - Pointer to a OOM_INFO structure. + * Return Value: + * TRUE means successful. FALSE means fails. + **/ + +DLLEXPORT FPDF_BOOL STDCALL FSDK_SetOOMHandler(OOM_INFO* oomInfo); + + +#ifdef __cplusplus +}; +#endif + + + + +#endif -- cgit v1.2.3