代码搜索:Winapi

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

代码结果 4,315
www.eeworm.com/read/409921/2225068

c sspi.c

#include #define NDEBUG #include SECURITY_STATUS WINAPI EnumerateSecurityPackagesW ( PULONG pulong, PSecPkgInfoW* psecpkginfow ) { DPRINT1("%s() not implement
www.eeworm.com/read/409921/2228247

c ddraw_thunk.c

#include "../rosdraw.h" HRESULT WINAPI ThunkDirectDraw_QueryInterface(LPDIRECTDRAW iface, REFIID iid, LPVOID *ppObj) { DX_WINDBG_trace(); return Main_DirectDraw_QueryInterface ((
www.eeworm.com/read/407447/2263984

c module.c

#include #include #include //Load Library HMODULE WINAPI LoadLibrary( LPCTSTR lpFileName ){ return KLoadLibrary( lpFileName, 1 ); } //GetProcAddres
www.eeworm.com/read/254485/4382281

cpp setup.cpp

// setup.cpp #include "sepch.h" extern bool GetPermanentProviderID(LPCSTR pszProvider, DWORD* pdwID); int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR pszCmdLine, int) { LPCSTR pszProvide
www.eeworm.com/read/162509/5547148

cpp threadfuncformsg.cpp

#include "stdafx.h" extern HWND g_hStatusBar; extern CWHList g_xGateList; UINT WINAPI ThreadFuncForMsg(LPVOID lpParameter) { _TDEFAULTMESSAGE DefaultMsg; char *pszBegi
www.eeworm.com/read/162509/5547368

cpp processevents.cpp

#include "stdafx.h" void WINAPI ProcessEvents() { if (g_xEventList.GetCount()) { PLISTNODE pListNode = g_xEventList.GetHead(); while (pListNode) { CEvent* pEvent = g_xEventList.
www.eeworm.com/read/395772/8152987

cpp showpic.cpp

// ShowPic.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "PIcDlg.h" int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR
www.eeworm.com/read/193378/8233937

cpp wincespysvr.cpp

// WinceSpySvr.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "MainFrame.h" int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LP
www.eeworm.com/read/415398/11074479

cpp winmain.cpp

#include #include int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ); { WNDCLASS wndcls; wndcls.cbCl
www.eeworm.com/read/413404/11157437

cpp leak.cpp

#include "stdafx.h" #include void SecondFunc() { LPBYTE lpBuffer = (LPBYTE)LocalAlloc(LMEM_FIXED, 1024); } void FirstFunc() { SecondFunc(); } int WINAPI main