代码搜索:CString
找到约 10,000 项符合「CString」的源代码
代码结果 10,000
www.eeworm.com/read/112193/15492446
cpp ircchannellistctrl.cpp
#include "StdAfx.h"
#include "ircchannellistctrl.h"
#include "emuledlg.h"
#include "emule.h"
#include "OtherFunctions.h"
#include "MenuCmds.h"
#include "ircwnd.h"
#include "ircmain.h"
struct
www.eeworm.com/read/112193/15492463
h ed2klink.h
//this file is part of eMule
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Fo
www.eeworm.com/read/112190/15492549
h smtp.h
/*
Module : SMTP.H
Purpose: Defines the interface for a MFC class encapsulation of the SMTP protocol
Created: PJN / 22-05-1998
Copyright (c) 1998 - 2002 by PJ Naughter. (Web: www.naughter.com,
www.eeworm.com/read/112144/15493130
h classtree.h
// lassTree.h: interface for the ClassTree class.
//
//////////////////////////////////////////////////////////////////////
#include "ClassTreeNode.h"
class ClassTree
{
public:
//construct an
www.eeworm.com/read/112043/15494567
cpp setupdlg.cpp
// SetupDlg.cpp : implementation file
//
#include "stdafx.h"
#include "12Clock.h"
#include "SetupDlg.h"
#include "registe.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static
www.eeworm.com/read/112043/15494569
h registe.h
#include "winreg.h"
// 包含头文件 winreg.h , 因注册表Win32 API 函数在其内定义
// 建立 CMyRegKey 类:
class CMyRegKey
{
// Construction
public:
CMyRegKey();
virtual ~CMyRegKey ();
// Attributes
public:
www.eeworm.com/read/112016/15495624
txt 说明.txt
矩阵运算程序
功能分析:
本程序能完成矩阵的输入、输出。具有相同行数和列数的矩阵间的加法、减法。符合矩阵乘法规则要求的矩阵间的乘法。方阵间的除法,方阵的求逆。矩阵的求转置矩阵等功能。
设计思想:
本程序要完成矩阵的一般运算。同时本程序的截面要友好,操作要简单,并具有较强的自我适应能力,即根据每人输入矩阵的方法不同,在生成矩阵时,程序能适当根据输入的各种格式来达到输入矩阵的功能;
本程序为 ...