perlez.h

来自「ARM上的如果你对底层感兴趣」· C头文件 代码 · 共 32 行

H
32
字号
//
//	PerlEz.h
//
//  (c) 1998 ActiveState Tool Corp. All rights reserved. 
//


#ifdef __cplusplus
extern "C" {
#endif

DECLARE_HANDLE(PERLEZHANDLE);

enum
{
	plezNoError = 0,		// success
	plezMoreSpace,			// more space need to return result
	plezError,				// returned error string in buffer
	plezErrorMoreSpace,		// more space need to return error message
	plezErrorBadFormat,		// format string is invalid
	plezException,			// function call caused an exception
	plezInvalidHandle,		// hHandle was invalid
	plezCallbackAlreadySet,	// second call to PerlEzSetMagicFunction fails
	plezInvalidParams,		// invalid parameter was passed to a routine
	plezOutOfMemory,		// cannot allocate more memory
};


PERLEZHANDLE APIENTRY PerlEzCreate(LPCSTR lpFileName, LPCSTR lpOptions);
// Description:
//		Creates a Perl interpreter. The return value is required parameter
//		for all subsequent 慞erlEz

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?