mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Add export for defaults
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
#include "../hash.h"
|
||||
|
||||
using namespace NSJSBase;
|
||||
class CHashEmbed : public CJSEmbedObject
|
||||
class JS_DECL CHashEmbed : public CJSEmbedObject
|
||||
{
|
||||
public:
|
||||
CHash* m_pHash;
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
#include "../js_internal/js_base.h"
|
||||
|
||||
using namespace NSJSBase;
|
||||
class CMemoryStreamEmbed : public CJSEmbedObject
|
||||
class JS_DECL CMemoryStreamEmbed : public CJSEmbedObject
|
||||
{
|
||||
public:
|
||||
NSMemoryStream::CMemoryStream* m_pInternal;
|
||||
|
||||
@ -14,7 +14,7 @@ namespace NSPointerObjectDeleters
|
||||
#define POINTER_DELETER(CLASS_NAME, NAME) void NAME(void* data) { CLASS_NAME* p = (CLASS_NAME*)data; delete data; }
|
||||
|
||||
using namespace NSJSBase;
|
||||
class CPointerEmbedObject : public CJSEmbedObject
|
||||
class JS_DECL CPointerEmbedObject : public CJSEmbedObject
|
||||
{
|
||||
public:
|
||||
void* Data;
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#endif
|
||||
|
||||
using namespace NSJSBase;
|
||||
class CTextMeasurerEmbed : public CJSEmbedObject
|
||||
class JS_DECL CTextMeasurerEmbed : public CJSEmbedObject
|
||||
{
|
||||
public:
|
||||
CTextMeasurerEmbed()
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
#include "../js_internal/js_base.h"
|
||||
|
||||
using namespace NSJSBase;
|
||||
class CZipEmbed : public CJSEmbedObject
|
||||
class JS_DECL CZipEmbed : public CJSEmbedObject
|
||||
{
|
||||
public:
|
||||
IFolder* m_pFolder;
|
||||
|
||||
Reference in New Issue
Block a user