代码搜索:KJS
找到约 326 项符合「KJS」的源代码
代码结果 326
www.eeworm.com/read/240248/4575743
cpp kjs.cpp
/*
* This file is part of the KDE libraries
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the ter
www.eeworm.com/read/240248/4575766
h kjs.h
/*
* This file is part of the KDE libraries
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the ter
www.eeworm.com/read/216802/4880500
c kjs.c
#include "kjs.h"
#include "js.h"
PKJS kjs_create_interp( VOID *Reserved ) {
PKJS kjs = ExAllocatePool( NonPagedPool, sizeof(KJS) );
if( !kjs ) return kjs;
kjs->interp = js_create_interp(N
www.eeworm.com/read/216802/4880558
h kjs.h
#ifndef KJS_H
#define KJS_H
#include "jsint.h"
#include "js.h"
#include "kjs_structs.h"
typedef struct system_ctx_st SystemCtx;
typedef struct _KJS {
JSInterpPtr interp;
JSVirtualMac