代码搜索:Winapi

找到约 4,315 项符合「Winapi」的源代码

代码结果 4,315
www.eeworm.com/read/200401/15434050

h morph.h

// morph.h #ifndef _INC_MorphAPI #define _INC_MorphAPI // 函数原型 BOOL WINAPI ErosionDIB (LPSTR lpDIBBits, LONG lWidth, LONG lHeight, BOOL bHori , int structure[3][3]); BOOL WINAPI DilationD
www.eeworm.com/read/200401/15434152

h dibapi.h

// dibapi.h #ifndef _INC_DIBAPI #define _INC_DIBAPI // DIB句柄 DECLARE_HANDLE(HDIB); // DIB常量 #define PALVERSION 0x300 /* DIB宏 */ // 判断是否是Win 3.0的DIB #define IS_WIN30_DIB(lpbi) ((*
www.eeworm.com/read/200401/15434163

h transdib.h

// TransDIB.h #ifndef _INC_GeoTransAPI #define _INC_GeoTransAPI // 常数π #define PI 3.1415926535 //角度到弧度转化的宏 #define RADIAN(angle) ((angle)*PI/180.0) // 函数原型 BOOL WINAPI MirrorDIB(L
www.eeworm.com/read/110326/15536471

h k32call.h

#ifndef K32CALL_H #define K32CALL_H extern "C" { DWORD WINAPI GetK32ProcAddress(int ord); } #endif
www.eeworm.com/read/109665/15552537

h windef.h

/*++ Copyright (c) 1985-1996 Microsoft Corporation Module Name: windef.h Abstract: Basic Windows Type Definitions. Revision History: --*/ #ifndef _WINDEF_ #define _WI
www.eeworm.com/read/108322/15588530

h lib.h

#ifndef __LIB_H #define __LIB_H /* 版权声明: 本文件版权为易语言作者吴涛所有,仅授权给第三方用作开发易语言支持库,禁止用于其他任何场合。 */ // 以下是由系统定义的基本数据类型,不可再更改。 #define _SDT_NULL 0 // 空白数据类型 #define _SDT_ALL
www.eeworm.com/read/108322/15588540

h lib.h

#ifndef __LIB_H #define __LIB_H /* 版权声明: 本文件版权为易语言作者吴涛所有,仅授权给第三方用作开发易语言支持库,禁止用于其他任何场合。 */ // 以下是由系统定义的基本数据类型,不可再更改。 #define _SDT_NULL 0 // 空白数据类型 #define _SDT_ALL
www.eeworm.com/read/107891/15598175

cpp kbmmemc6run.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #pragma package(smart_init) //-----------------------------------------------------------
www.eeworm.com/read/103858/15718021

html wpw_wapi_wing_95.html

Return to Table of Contents for this chapter Subject: Where do I get WinG? In article
www.eeworm.com/read/102697/15762527

txt vc里一些容易混淆的地方.txt

1.FALSE/TRUE与false/true的区别: false/true是标准C++语言里新增的关键字,而FALSE/TRUE是通过#define,这要用途 是解决程序在C与C++中环境的差异,以下是FALSE/TRUE在windef.h的定义: #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRU