object.h

来自「该项目主要是将wingdows程序直接运行在linux上」· C头文件 代码 · 共 64 行

H
64
字号
/* * object.h * * Copyright (C) 2006  Insigme Co., Ltd * * Authors:  * - Chenzhan Hu, Lixing Chu, Limin Jin, Liwei Zhou, Zhiqiang Jiao * * This software has been developed while working on the Linux Unified Kernel * project (http://linux.insigma.com.cn) in the Insigma Reaserch Institute,   * which is a subdivision of Insigma Co., Ltd (http://www.insigma.com.cn). *  * The project is sponsored by Insigma Co., Ltd. * * The authors can be reached at linux@insigma.com.cn. * * This program is free software; you can redistribute it and/or modify it * under the terms of  the GNU General  Public License as published by the * Free Software Foundation; either version 2 of the  License, or (at your * option) any later version. * * Revision History: *   Jan 2006 - Created. */ /* * object.h: * Reference to Kernel-win32 code */#ifndef _OBJECT_H#define _OBJECT_H#include <linux/module.h>#include <linux/win32_object.h>#include "win32.h"#ifdef CONFIG_UNIFIED_KERNELextern int fetch_oname(struct oname *oname, const char *name);extern void InitObjectClass(struct win32_object_class *clss);extern win32_object *FindObject(struct win32_object_class *clss, const char *name);extern win32_object *AllocObject(struct win32_object_class *clss,		const char *name,		void *data);extern win32_object *CreateObject(struct ethread *thread,		struct win32_object_class *clss,		const char *name,		void *data,		HANDLE *hObject		);extern win32_object *OpenObject(struct ethread *thread,		struct win32_object_class *clss,		const char *name,		HANDLE *hObject		);extern win32_object *GetObject(struct ethread *thread,		HANDLE handle,		struct win32_object_class *clss);extern void objput(win32_object *obj);#endif /* CONFIG_UNIFIED_KERNEL */#endif /* _OBJECT_H */ 

⌨️ 快捷键说明

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