資源簡(jiǎn)介
wine,是一款優(yōu)秀的Linux系統(tǒng)平臺(tái)下的模擬器軟件,用來將Windows系統(tǒng)下的軟件在Linux系統(tǒng)下穩(wěn)定運(yùn)行,該軟件更新頻繁,日臻完善,可以運(yùn)行許多大型Windows系統(tǒng)下的軟件。另外英語(yǔ)單詞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;
}
- 上一篇:編譯原理詞法分析+語(yǔ)法分析課設(shè)
- 下一篇:高保真原型圖
評(píng)論
共有 條評(píng)論