资源简介
wine,是一款优秀的Linux系统平台下的模拟器软件,用来将Windows系统下的软件在Linux系统下稳定运行,该软件更新频繁,日臻完善,可以运行许多大型Windows系统下的软件。另外英语单词wine是葡萄酒的意思。
代码片段和文件信息
/*
* Implementation of the AclEdit Interface
*
* Copyright 2006 Eric Pouech
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not write to the Free Software
* Foundation Inc. 51 Franklin St Fifth Floor Boston MA 02110-1301 USA
*/
#include
#include “windef.h“
#include “winbase.h“
#include “winuser.h“
#include “wfext.h“
#include “wine/unicode.h“
#include “wine/debug.h“
WINE_DEFAULT_DEBUG_CHANNEL(acledit);
/*****************************************************
* DllMain
*/
BOOL WINAPI DllMain(HINSTANCE hinstDLL DWORD fdwReason LPVOID lpvReserved)
{
TRACE(“(%p %d %p)\n“ hinstDLL fdwReason lpvReserved);
switch (fdwReason)
{
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls( hinstDLL );
break;
}
return TRUE;
}
/***********************************************************************
* FMExtensionProcW (acledit.@)
*
*/
LONG WINAPI FMExtensionProcW(HWND hWnd WORD wEvent LONG lParam)
{
FIXME(“(%p %d 0x%x) stub\n“ hWnd wEvent lParam);
return 0;
}
- 上一篇:编译原理词法分析+语法分析课设
- 下一篇:高保真原型图
相关资源
- wine-gecko-mono.zip
- winedt7.0 完美破解
- Deepin.tar.gz
- 能用的DOWINE3视频利器
- 安装wine后的必装插件monogecko
- 数据分析葡萄酒数据集wine.data
- UCI 机器学习Wine数据集
- weka经典七个数据集
- EasyWine3RC2.zip
- Ubuntu 安装Wine 显示方块字体 如:□
- wine数据集136146
- 机器学习常用数据集(iris、wine、ab
- UCI机器学习数据库部分数据集iris、
- WinEdt V5.5 5.6 注册机
- Wine Data Set.rar( 数据挖掘 数据集 )
- WinEdt 6.0 注册机
- 数据挖掘wine数据集分类实验报告及代
- 机器学习数据预处理葡萄酒数据集w
- delphi7中使用的FmxUtils单元
- winedt使用方法
- Latex winEdt 入门指南
- Wineskin Winery
- Experimental Study on Estimating Fertilizer Va
- epel-release-5-4.noarch.rpm
- 红葡萄酒数据集winequality-red.csv,白葡
- wine_SVM数据
- wine数据集及其描述
- latex插入表格
- 贝叶斯分类器数据集wine.rar
- 机器学习wine数据集
评论
共有 条评论