Click here to Skip to main content
15,897,273 members
Articles / Programming Languages / C++

Gecko! Embedded C++ scripting for your applications

Rate me:
Please Sign up or sign in to vote.
4.93/5 (23 votes)
31 Aug 20036 min read 241.2K   2.6K   102  
Embed a C++ compiler in your project, use C++ as a compiled "scripting" language!
// File generated by GeckoSetup on Fri Aug 29 14:45:57 2003

#include "Gecko.h" // CGecko class

// You'd better not modify this
enum
{
	GM_RUN = 0x01,
	GM_ABORT,
	GM_REGISTER_NATIVES,
	GM_USER
};

#define GECKO_NATIVE
#define GECKO_NATIVE_CALL __stdcall

#ifdef _DEBUG
#pragma comment(lib, "GeckoLib-d.lib")
#else
#pragma comment(lib, "GeckoLib.lib")
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer
France France
Bouh

Comments and Discussions