【发布时间】:2010-10-18 18:21:31
【问题描述】:
如何在 C# .NET 或 C++ Win32 中禁用航空效果???
这是我在 C/C++ 中的测试代码,但只有在我的应用程序运行时才有效
#include <dwmapi.h>
int main()
{
DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
while(true);
//...
return 0;
}
//LINK dwmapi.lib
谢谢
编辑:我想通了
#include <Windows.h>
#include <dwmapi.h>
int WINAPI WinMain(HINSTANCE hI, HINSTANCE hP, PSTR str, int c)
{
DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
MSG msg;
ZeroMemory(&msg, sizeof(MSG));
while(GetMessage(&msg, 0, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
//Memory: 314KB
//CPU: 0%
【问题讨论】:
-
您想为用户永久禁用它们吗?
标签: c# .net c++ windows winapi