代码搜索:cstring
找到约 10,000 项符合「cstring」的源代码
代码结果 10,000
www.eeworm.com/read/179659/9345687
h search.h
// Search.h: interface for the Search class. ////////////////////////////////////////////////// ...
class Search
{
public:
Search(CString strFilePath, CString strFileName);
void Start();
v
www.eeworm.com/read/452024/7452082
cpp utility.cpp
//
#include "stdafx.h"
CString CUtility ::GenerateID()
{
CString strID;
SYSTEMTIME sysTime;
::GetSystemTime(&sysTime);
DWORD dwTickCount = ::GetTickCount();
DWORD dwRandom =
www.eeworm.com/read/328974/12991735
cpp utility.cpp
//
#include "stdafx.h"
CString CUtility ::GenerateID()
{
CString strID;
SYSTEMTIME sysTime;
::GetSystemTime(&sysTime);
DWORD dwTickCount = ::GetTickCount();
DWORD dwRandom =
www.eeworm.com/read/351250/10669729
cpp utf8-ansi.cpp
//首先从UTF8转到UNCODE
//再从UNCODE转到ANSI
int ConvUtf8ToAnsi(CString& strSource, CString& strChAnsi)
{
if (strSource.GetLength()
www.eeworm.com/read/368506/9691587
cpp common.cpp
#include "common.h"
// 得到当前文件路径
void GetCurrentFile(CString& FullName, CString& FileName, CString& NameNoExt)
{
char szFullPath[MAX_PATH];
GetModuleFileName(NULL,szFullPath,MAX_PATH);
char*
www.eeworm.com/read/419756/10839493
h command.h
// 各种命令参数:
const CString SY0 ="fa fb 03 00 00 00";
const CString SY1 ="fa fb 03 01 00 01";
const CString SY2 ="fa fb 03 02 00 02";
const CString OPENSERVER ="fa fb 03 01 00 01";
const
www.eeworm.com/read/254562/4381897
h command.h
// 各种命令参数:
const CString SY0 ="fa fb 03 00 00 00";
const CString SY1 ="fa fb 03 01 00 01";
const CString SY2 ="fa fb 03 02 00 02";
const CString OPENSERVER ="fa fb 03 01 00 01";
const
www.eeworm.com/read/292231/8366433
h tokenizer.h
#ifndef _TOKENIZER_H_
#define _TOKENIZER_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// tokenizer.h : header file
//
// now should be defined the token types
#define TT_E
www.eeworm.com/read/292231/8366529
h symboltable.h
#ifndef _SYMBOLTABLE_H_
#define _SYMBOLTABLE_H_
#include "parser.h"
// SIZE is the size of the hash table
#define SIZE 211
// SHIFT is the power of two used as multiplier in hash function
www.eeworm.com/read/391548/8397575
cpp ado.cpp
// ADODB1.cpp: implementation of the ADODB class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ADO.h"
#ifdef _DEBUG
#undef THIS_FIL