open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,37 @@
/**
@file JSGlobalExportCFun.h
@brief
@author James
@version 1.0
@date 2013_11_12
*/
#ifndef __JSGlobalExportCFun_H__
#define __JSGlobalExportCFun_H__
//包含头文件
#include "../JSInterface/JSInterface.h"
namespace laya
{
void JSPrint( const char* p_sBuffer );
void LayaAlert(const char* p_sBuffer);
void JSAlert( const char* p_sBuffer );
void evalJS( const char* p_sSource );
void JSGlobalExportC();
bool IsStreamMode();
std::string conchToBase64(const char* type, float encoderOptions, JSValueAsParam ab, int w, int h);
std::string conchToBase64FlipY(const char* type, float encoderOptions, JSValueAsParam ab, int w, int h);
}
#endif //__JSGlobalExportCFun_H__
//-----------------------------END FILE--------------------------------