代码搜索:CString
找到约 10,000 项符合「CString」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2867455
c pr31081-2.c
/* { dg-do compile } */
class CString
{
public:
CString();
~CString() { operator delete(_rep); }
operator const char*() const { return _rep; }
private:
CString(char* cstr);
char*
www.eeworm.com/read/100012/15889908
h orstring.h
class CORString: public CString {
public:
CORString(IDData * data, DWORD val) : CString(getString(data, val)) {};
CORString(LPCTSTR s) : CString(s) {};
CORString() : CString() {};
static voi
www.eeworm.com/read/27451/865208
txt d157.bmp.txt
CString tableName;
CString yuanYeSampleID;
CString cFenSampleID;
int iGroup;
int connectDelay;
int retryCount;
HWND caller;
} Transfe
www.eeworm.com/read/37216/900489
txt d157.bmp.txt
CString tableName;
CString yuanYeSampleID;
CString cFenSampleID;
int iGroup;
int connectDelay;
int retryCount;
HWND caller;
} Transfe
www.eeworm.com/read/460098/7257671
cpp stringtest.cpp
/*
#include "afx.h"
typedef unsigned char byte;
// void SuperCString::Split(CString rawString,char sp,CString* sp_arr[],int* length)
void Split(CString rawString,CString sp,CString* sp_arr[],int
www.eeworm.com/read/149466/6314915
cpp stream.cpp
#include "stdafx.h"
#include "Stream.h"
CString Key_Stream::CString_And(CString a,CString b)
{ CString result;
int i,la=a.GetLength(),lb=b.GetLength();
int minlen;
if (la>=lb)
{
www.eeworm.com/read/216048/15028132
cpp vb6functions.cpp
#include "stdafx.h"
#include "VB6functions.h"
namespace VB6
{
CString ReadUntil(CString &sIn,const CString &sDelim,bool &bFound);
CString Join(const std::vector &source,const CStri
www.eeworm.com/read/366702/2867484
c pr34651.c
/* { dg-do compile } */
typedef bool Bool;
struct CString {
CString (const char * =__null);
CString & operator += (const CString &);
};
struct THotKey {
short Key;
Bool Control;
Bool
www.eeworm.com/read/284408/8935694
h xpassage.h
#pragma once
class XPassage
{
public:
XPassage (CString vStation = "", PointF position = PointF (-1, -1), CString vLine1 = "", CString vLine2 = "");
virtual ~XPassage();
public:
CString
www.eeworm.com/read/180327/9312183
h parsehtml.h
CString sElement[5000];
int nElements;
void ParseHtml(const CString& sHTML)
{
CString sItem = "";
CString sChar;
BOOL bInTag = false;
BOOL bInQuote = false;
nElements = 0;
int nPo