Invoking the L scripting language in C + + code

Source: Internet
Author: User

The scripting language agrees to be called by other programming languages. such as C + +, very easy. Just load the dynamic library of the L script engine in the host language

Call these two functions directly to be able to

extern "C" int __stdcall scriptenginedostring (wchar_t * scriptstring);
extern "C" int __stdcall scriptenginedoscriptfile (wchar_t * scriptfilename);


Example of a C language invocation of the L script engine:


#include <windows.h>
#include ". /scriptenginedll/scriptenginedll.h "


int _tmain (int argc, _tchar* argv[])
{
hmodule hdll = Loadlibraryw (L "ScriptEngineDll.dll");
if (hdll)
{
Func_scriptenginedostring scriptenginedostring = (func_scriptenginedostring) GetProcAddress (hDLL, " Scriptenginedostring ");
if (scriptenginedostring)
{
Scriptenginedostring (L "Restart: Computer");
}
}
return 0;
}

Invoking the L scripting language in C + + code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.