Beispiel #1
0
double entryPoint(void * environment)
{
	if (EnvArgCountCheck(environment,"entryPoint",EXACTLY,1) == -1) return(-1.0);

	
	const char* streamName;
	streamName = EnvRtnLexeme(environment,1);
	
	printf("arg:%s", streamName);
	return 1.0;
}
Beispiel #2
0
 void get_argument(void* env, int argposition, std::string& value) {
   value = EnvRtnLexeme(env, argposition);
 }