📄 cclib.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/**********************************************************************/
/** Microsoft Windows **/
/**********************************************************************/
/*
ccutil.h
Declarations for some useful C library functions.
*/
#ifndef _CCLIB_H_
#define _CCLIB_H_
#ifdef UNDER_CE
#include "ndis.h"
#endif // UNDER_CE
// C Library Functions
// ===================
#ifdef UNDER_CE
#ifdef DONT_COMPILE
// <string.h> functions
#ifdef DEBUG
// These functions are compiler intrinsic
char *strcpy(char *s, char *ct);
unsigned int strlen(char *s);
int strcmp (const char *s1, const char *s2);
#endif // DEBUG
char *strchr(char *s, int c);
#endif // DONT_COMPILE
_CRTIMP char * __cdecl strncpy(char *, const char *, size_t);
_CRTIMP int __cdecl strncmp(const char *, const char *, size_t);
#ifdef UNICODE
#define _tcstol wcstol
#else
#define _tcstol strtol
#endif
PNDIS_BUFFER CopyFlatToNdis(PNDIS_BUFFER DestBuf, uchar *SrcBuf, uint Size,
uint *StartOffset);
#endif // UNDER_CE
// Help with ARGC/ARGV
int CreateArgvArgc(TCHAR *pProgName, TCHAR *argv[20], TCHAR *pCmdLine);
// Debugging helpers
#ifdef DEBUG
void DumpMem (PBYTE Ptr, ULONG Len);
#endif
#endif // _CCLIB_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -