代码搜索:MsgBox
找到约 3,543 项符合「MsgBox」的源代码
代码结果 3,543
www.eeworm.com/read/120268/14808281
inc msgbox.inc
UINT TYPEDEF DWORD
LPSTR TYPEDEF PTR BYTE
LPCSTR TYPEDEF LPSTR
PVOID TYPEDEF PTR
HANDLE TYPEDEF PVOID
HWND TYPEDEF HANDLE
MB_ICONINFORMATION = 00000040h
MB_OK = 00000000h
M
www.eeworm.com/read/120268/14808282
exe msgbox.exe
www.eeworm.com/read/120268/14808283
asm msgbox.asm
.386p
.MODEL flat,stdcall
INCLUDE MSGBOX.INC
.STACK 4096
.DATA
WindowTitle BYTE 'MsgBox',0
Message1 BYTE 'This is a simple MessageBox Win32 application.',0
.CODE
_start:
INVO
www.eeworm.com/read/120268/14808284
obj msgbox.obj
www.eeworm.com/read/217373/14968064
c msgbox.c
/*
* msgbox.c -- implements the message box and info box
*
* ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
* MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcapw@cfw.com)
*
* This
www.eeworm.com/read/217373/14968079
o msgbox.o
www.eeworm.com/read/115545/15010913
cpp msgbox.cpp
//#include "MsgBox.h"
#include "stdafx.h"
CMsgBox::CMsgBox() // Constructor
{
m_nType = 0;
m_bActive = FALSE;
m_bInited = FALSE;
m_bSet = FALSE;
}
CMsgBox::~CMsgBox() // Destructor
www.eeworm.com/read/115545/15010935
h msgbox.h
#ifndef _MSGBOX_H_
#define _MSGBOX_H_
//////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
www.eeworm.com/read/11175/207404
c msgbox.c
/*
COW : Character Oriented Windows
msgbox.c : message boxes
*/
#define COW
#define cwExtraWnd 5 /* for static structure size */
#include
#include
#include