代码搜索:Winapi

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

代码结果 4,315
www.eeworm.com/read/135489/5886688

h winreg.h

#ifndef _WINREG_H #define _WINREG_H #if __GNUC__ >=3 #pragma GCC system_header #endif #ifdef __cplusplus extern "C" { #endif #define HKEY_CLASSES_ROOT ((HKEY)0x80000000) #define HKEY_CURRENT_USER ((H
www.eeworm.com/read/135489/5886690

h winnls.h

#ifndef _WINNLS_H #define _WINNLS_H #if __GNUC__ >=3 #pragma GCC system_header #endif #ifdef __cplusplus extern "C" { #endif #define MAX_LEADBYTES 12 #define MAX_DEFAULTCHAR 2 #define LOCALE_NOUSER
www.eeworm.com/read/135489/5886692

h wincon.h

#ifndef _WINCON_H #define _WINCON_H #if __GNUC__ >=3 #pragma GCC system_header #endif #ifdef __cplusplus extern "C" { #endif #define FOREGROUND_BLUE 1 #define FOREGROUND_GREEN 2 #define FOREGROUND_
www.eeworm.com/read/135153/5887285

h wintools.h

/* * wintools.h - MS Windows tools library header * * WINGEN General Purpose Library * WINMEM Windows Memory Mgmt Library * WINFX Special Effects Library * WINDRAW Draw Library * WINCTL Custom
www.eeworm.com/read/135153/5887287

h winfont.h

/* winfont.h*/ /* * Copyright (c) 2000 Greg Haerr * * Win32 font structures and API */ /* tmPitchAndFamily flags*/ #define TMPF_FIXED_PITCH 0x01 /* win32 bug: means variable
www.eeworm.com/read/135153/5887289

h wingdi.h

/* wingdi.h*/ /* * Copyright (c) 1999,2000,2001 Greg Haerr * * Win32 GDI structures and API */ /* portable coordinate definition*/ typedef MWCOORD GDICOORD; /* inherit RECT an
www.eeworm.com/read/135153/5887298

h winuser.h

/* winuser.h*/ /* * Copyright (c) 1999, 2000 Greg Haerr * * Win32 USER structures and API */ #include "winctl.h" /* required compatibility for resource compiler*/ /* moved from
www.eeworm.com/read/135153/5887358

c insetr.c

#include "windows.h" #include "wintools.h" /* * WIN Draw Library */ void WINAPI InsetR(LPRECT lprc,int h,int v) { lprc->top += v; lprc->left += h; lprc->right -= 2*h-1; lprc->bottom -= 2*v-1; }
www.eeworm.com/read/135153/5887370

c caret.c

/* * Copyright (c) 2000 Greg Haerr * * Caret control for Microwindows win32 api. * * TODO: add SetSysTimer for blinking */ #include #include #include
www.eeworm.com/read/131762/5927993

c insetr.c

#include "windows.h" #include "wintools.h" /* * WIN Draw Library */ void WINAPI InsetR(LPRECT lprc,int h,int v) { lprc->top += v; lprc->left += h; lprc->right -= 2*h-1; lprc->bottom -= 2*v-1; }