• 大小: 19.08MB
    文件类型: .xz
    金币: 1
    下载: 0 次
    发布日期: 2023-07-26
  • 语言: 其他
  • 标签: wine  

资源简介

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;

}

评论

共有 条评论