summaryrefslogtreecommitdiff
path: root/fpdfsdk/include/fpdfoom.h
blob: 638b012b74347fdf94f25666fca6f768417e79f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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