| // 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
|
| class CJS_Module : public IReader_Module
|
| CJS_Module(HMODULE hModule, CReader_App* pApp);
|
| virtual void Destroy(){delete this;}
|
| virtual CFX_ByteString GetModuleName();
|
| static CJS_Module* GetModule(CReader_App* pApp);
|
| IFXJS_Runtime* NewJSRuntime();
|
| CJS_GlobalData* NewGlobalData();
|
| void ReleaseGlobalData();
|
| void PrintLineConsole(FX_LPCWSTR string);
|
| CJS_GlobalData* m_pGlobalData;
|
| FX_INT32 m_nGlobalDataCount;
|
| CJS_ConsoleDlg* m_pConsole;
|