-
WIN2000 NT SERVICE控制源代码
WIN2000 NT SERVICE控制源代码-WIN2000 NT source code control SERVICE
- 2022-07-24 08:22:23下载
- 积分:1
-
算法代码,分别提取两类不同的特征。关于这些算法的说明,可参见第8章的相关章节。
使用时直接将代码拷贝到需要使用的地方即可。代码片断在Visual C++6....
算法代码,分别提取两类不同的特征。关于这些算法的说明,可参见第8章的相关章节。
使用时直接将代码拷贝到需要使用的地方即可。代码片断在Visual C++6.0下可编译。-Algorithm code, were extracted from two different characteristics. On the description of these algorithms can be found in Chapter 8 of the relevant sections. When used to directly copy the code where you need to use. Code snippets in Visual C++6.0 to compile under.
- 2022-05-10 20:26:16下载
- 积分:1
-
32432423fwtetfgsd
tưertwertttyq3teqrtgdfgdfgeqghfuiiiiiiiiiiiisdhuiuewhriuehwifjhnsdkjfnasiofh8werhfksdhfiusahfksadfiusahf8w3uhflksdahf87qwhf7w94yrfuisdhfisadjnhfijwfj908uefwijfijsadjfysahdfksjdnhf8sahfiw4efj9weufosidajf89uasjfoiewjf9weajfosdjf98wjfiosdjfujwifj4ofs
- 2022-01-22 14:28:18下载
- 积分:1
-
用VC编的小游戏程序,能给大家参考,谢谢你们使用,多多帮助我,互相学习....
用VC编的小游戏程序,能给大家参考,谢谢你们使用,多多帮助我,互相学习.-VC series of small game procedures, give your reference, thank you for your use, give more to help me, to learn from each other.
- 2022-04-13 07:40:33下载
- 积分:1
-
该程序实现对一维数据轴上的最临近点的求解问题 采用方法:分治方法(找出中位数,两边递归)...
该程序实现对一维数据轴上的最临近点的求解问题 采用方法:分治方法(找出中位数,两边递归)-the process of achieving a dimensional data axis near the point of the methodology used to solve the problem : the administration (to identify the median on both sides, the recursive)
- 2022-09-13 15:50:03下载
- 积分:1
-
Access database based on the route search system, site, line, change the search...
基于Access数据库的路线查寻系统,实现站点,路线,换乘查寻等功能-Access database based on the route search system, site, line, change the search functions
- 2022-11-22 08:55:03下载
- 积分:1
-
Liuzhou Ji seven games source code aids in support of search and other demons.
七龙纪游戏辅助工具 源代码
支持恶魔搜索等.-Liuzhou Ji seven games source code aids in support of search and other demons.
- 2022-03-11 07:47:18下载
- 积分:1
-
right VB program for Chinese localization source, the environment wins VB6+ VBsp...
对VB编写的程序进行汉化的源码,运行环境VB6+VBsp5+wins-right VB program for Chinese localization source, the environment wins VB6+ VBsp5
- 2022-03-29 07:02:02下载
- 积分:1
-
C++应用编程200例,适合C++初学者,从简单的小程序开始。
C++应用编程200例,适合C++初学者,从简单的小程序开始。-C++ Application programming 200 cases for C++ Beginners, from the simple beginning of the proceedings.
- 2022-04-27 08:37:44下载
- 积分:1
-
VC毛玻璃
#define GDIPVER 0x0110 //定义高版本的GDI+(1.1)
#include
#include
#include
#include
#include
#pragma comment(lib,"GdiPlus.lib")
using namespace Gdiplus;
#include
#pragma comment(lib,"dwmapi.lib")
//Aero效果是否已启用
BOOL IsCompositionEnabled()
{
BOOL bEnabled,bResult;
bResult = (SUCCEEDED(DwmIsCompositionEnabled(&bEnabled)) && bEnabled);
return bResult;
}
//对已分层的窗口启动玻璃效果
HRESULT EnableBlurBehindWindow(HWND hWnd, //窗口句柄
BOOL bEnable = TRUE, //启用或禁用
HRGN hRgn = 0, //模糊窗体中某个区域
BOOL bTransitionOnMaximized = FALSE) //最大化时是否启用
{
DWM_BLURBEHIND blurBehind = { 0 };
blurBehind.dwFlags = DWM_BB_ENABLE | DWM_BB_TRANSITIONONMAXIMIZED;
blurBehind.fEnable = bEnable;
blurBehind.fTransitionOnMaximized = bTransitionOnMaximized;
if (bEnable && hRgn != NULL)
{
blurBehind.dwFlags |= DWM_BB_BLURREGION;
blurBehind.h
- 2023-05-01 15:10:04下载
- 积分:1