wine-3.6.tar.xz


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)
“ 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
“ hWnd wEvent lParam);
    return 0;

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)