代码搜索:Winapi
找到约 4,315 项符合「Winapi」的源代码
代码结果 4,315
www.eeworm.com/read/319840/6783837
c backdoor.c
#include
__declspec(dllexport) void manager()
{
MessageBox(0, "just a test", "Hi", MB_OK);
}
BOOL WINAPI DllMain(HINSTANCE hinstDll, DWORD fdwReason, PVOID fImpLoad)
{
switch(
www.eeworm.com/read/300625/13902702
cpp waveout.cpp
#include "stdafx.h"
#include "WaveOut.h"
#pragma comment(lib,"Winmm")
DWORD CWaveOut::s_dwInstance = 0;
DWORD WINAPI CWaveOut::AudioOutThreadProc(LPVOID lpParameter)
{
TRACE("AudioOutThread
www.eeworm.com/read/235198/14082071
c backdoor.c
#include
__declspec(dllexport) void manager()
{
MessageBox(0, "just a test", "Hi", MB_OK);
}
BOOL WINAPI DllMain(HINSTANCE hinstDll, DWORD fdwReason, PVOID fImpLoad)
{
switch(
www.eeworm.com/read/101828/15806214
cpp hellomsg.cpp
#include
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,
int nShowCmd)
{
MessageBox(NULL,TEXT("Hello, Windows 98!"),TEXT("HelloMsg")
,MB_OK
www.eeworm.com/read/432726/8580361
cpp oracle_cancel.cpp
DWORD WINAPI Oracle_Cancel_Thread(void *_pCon)
{
SAConnection *pCon = (SAConnection *)_pCon;
SACommand cmd;
cmd.setConnection(pCon);
try
{
cmd.setCommandText("Update DEPT set DNAME=DNAME");
www.eeworm.com/read/383982/8908201
cpp mytest2.cpp
#include
LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM);
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInst,LPSTR lpszCmdLine,int nCmdShow)
{
HWND hwnd;
MSG Msg;
WND
www.eeworm.com/read/282090/9120626
cpp win_cam.cpp
// win_cam.c -- windows specific camera view code
#include "stdafx.h"
#include "qe3.h"
/*
============
CameraWndProc
============
*/
LONG WINAPI WCam_WndProc (
HWND hWnd,
UINT
www.eeworm.com/read/179954/9327526
cpp polybezier.cpp
// PolyBezier.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
int WINAPI WinMain (HI
www.eeworm.com/read/363142/9966675
cpp 123.cpp
#include
LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM);
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInst,LPSTR lpszCmdLine,int
nCmdShow)
{
HWND hwnd;
MSG Msg;
WNDCLA
www.eeworm.com/read/162078/10340660
cpp crit_section.cpp
#include
CRITICAL_SECTION cs;
// Child thread procedure.
DWORD WINAPI ChildThreadProc(HWND hWnd)
{
TCHAR szBuffer[256]; // Work area for print formatting.
wsprintf( sz