代码搜索:Winapi

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

代码结果 4,315
www.eeworm.com/read/417311/10995383

bas declare.bas

Attribute VB_Name = "mo_declare" '******************通讯命令 Port Commands ****************************************************************** '打开串口 int WINAPI rf_init_com(int port,long baud); Public De
www.eeworm.com/read/416391/11031117

h dllmain.h

#ifndef _DLLMAIN_ #define _DLLMAIN_ #ifndef _CACHEDEXT_ #include "CachedExt.h" #endif #define DllExport __declspec(dllexport) DllExport BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD
www.eeworm.com/read/416391/11031139

cpp dllmain.cpp

#ifndef _DLLMAIN_ #include "DllMain.h" #endif DllExport BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpvReserved) { switch (dwReason) { case DLL_PROCESS_ATTACH: {
www.eeworm.com/read/131205/6955843

cpp mthello.cpp

#include #include // Prototype for Hello application worker thread procedure. // DWORD WINAPI WorkerThreadProc( LPVOID lpThreadParameter ); // Main program entry point.
www.eeworm.com/read/445398/7595850

cpp main.cpp

#include "allHeader.h" long WINAPI WndProc(HWND hWnd, UINT iMessage, UINT wParam, LONG lParam); BOOL InitWindowsClass(HINSTANCE hInstance); BOOL InitWindows(HINSTANCE hInstance, int nCmdShow);
www.eeworm.com/read/444115/7617872

cpp main.cpp

/** * Irrlicht Demo * * */ #include "stdafx.h" #include "App.h" #pragma comment( lib, "Irrlicht.lib" ) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,
www.eeworm.com/read/437268/7752505

cpp treadfunction.cpp

#include "stdafx.h" #include "DataStructAndConstant.h" #include "ToolFunction.h" #include "TreadFunction.h" #include "ProcessCommand.h" DWORD WINAPI ServerWorkerThread(LPVOID ComlpetionPortID)
www.eeworm.com/read/142995/12906019

cpp versionsearcher.cpp

#include "VersionSearcher.h" int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrev, LPSTR lpCmdLine, int iShowCmd) { MSG message; InitCommonControls(); InitFonts(g_hFonts); g_hInstan
www.eeworm.com/read/141545/13002040

cpp handle_exception.cpp

#include #define OUR_EXCEPTION 0xE0000001 LONG WINAPI OurUnhandledExceptionFilter(LPEXCEPTION_POINTERS lpExceptionData) { EXCEPTION_RECORD *ExceptionRecord = lpExceptionData-
www.eeworm.com/read/318263/13482318

cpp p2pserver.cpp

/////////////////////////////////////// // P2PServer.cpp文件 #include "../common/InitSock.h" #include "../comm.h" #include DWORD WINAPI IOThreadProc(LPVOID lpParam); CInitS