代码搜索:cstring
找到约 10,000 项符合「cstring」的源代码
代码结果 10,000
www.eeworm.com/read/248414/12578489
h function.h
#ifndef _function_H
#define _function_H
BOOLEAN bOpenDriver( HANDLE * phDeviceHandle, PCHAR devname);
void GetPipeInfo();
BOOLEAN bFileTransfer(CString strFilePath,CString strFil
www.eeworm.com/read/204043/15346462
h myfavorites.h
#pragma once
// CMyFavorites command target
class CMyFavorites : public CObject
{
public:
CMyFavorites();
virtual ~CMyFavorites();
public:
CString m_strAcademic;
CString m_strAr
www.eeworm.com/read/100893/15863322
cpp utility.cpp
// utility.cpp
//
// @author christian oetterli
//
#include "stdafx.h"
#include "utility.h"
CString getLastErrorMessage()
{
DWORD lastError = GetLastError();
CString msg;
if (lastEr
www.eeworm.com/read/288006/8655299
h link.h
#ifndef NODE_CLASS
#define NODE_CLASS
struct struct1 //学生信息结构体
{
CString num;
CString name;
CString sex;
int score[3]; //分别是语文、数学、外语成绩
};
//节点类声明部分
class Node : CObject
{