📄 stdlibx.h
字号:
//////////////////////////////////////////////////////
//
// VisualStudio 2005 PWLib Port,
// (c) 2007 Dinsk.net
// developer@dinsk.net
//
//////////////////////////////////////////////////////
//
// (c) 2000 Yuri Kiryanov, yuri@kiryanov.com
// and Yuriy Gorvitovskiy
//
// Windows CE port of OpenH323 Open Source Project, www.openh323.org
// PWLib extras
#ifndef __STDLIBX_H__
#define __STDLIBX_H__
#ifdef _WIN32_WCE
#include <stdlib.h>
#include <winsock.h>
#ifdef __cplusplus
// Include Winsock library
#pragma comment(lib, "ws2.lib")
#define assert(e)
extern "C"{
#define errno GetLastError()
#define set_errno(err) SetLastError( err)
void __cdecl abort(void);
void __cdecl perror(const char *s);
};
#define _environ (NULL)
inline char *getenv( const char *) { return NULL; };
inline int putenv( const char *) { return -1; };
#define _putenv putenv
int _mkdir(const char *);
int _rmdir(const char *);
int _access(const char *, int);
inline int access(const char * s, int i) { return _access(s,i); }
inline int _chdrive(int) { return 0; }
inline int _chdir(const char *) { return 0; }
char * _mktemp (char *temp);
int remove(const char *);
int _chmod( const char *filename, int pmode );
int rename( const char *oldname, const char *newname );
#define _S_IREAD 0000400 /* read permission, owner */
#define _S_IWRITE 0000200 /* write permission, owner */
#define S_IREAD _S_IREAD
#define S_IWRITE _S_IWRITE
#define _O_RDONLY 0x0000 /* open for reading only */
#define _O_WRONLY 0x0001 /* open for writing only */
#define _O_RDWR 0x0002 /* open for reading and writing */
#define _O_APPEND 0x0008 /* writes done at eof */
#define _O_CREAT 0x0100 /* create and open file */
#define _O_TRUNC 0x0200 /* open and truncate */
#define _O_EXCL 0x0400 /* open only if file doesn't already exist */
/* O_TEXT files have <cr><lf> sequences translated to <lf> on read()'s,
** and <lf> sequences translated to <cr><lf> on write()'s
*/
#define _O_TEXT 0x4000 /* file mode is text (translated) */
#define _O_BINARY 0x8000 /* file mode is binary (untranslated) */
/* macro to translate the C 2.0 name used to force binary mode for files */
#define _O_RAW _O_BINARY
/* Open handle inherit bit */
#define _O_NOINHERIT 0x0080 /* child process doesn't inherit file */
/* Temporary file bit - file is deleted when last handle is closed */
#define _O_TEMPORARY 0x0040 /* temporary file bit */
/* temporary access hint */
#define _O_SHORT_LIVED 0x1000 /* temporary storage file, try not to flush */
/* sequential/random access hints */
#define _O_SEQUENTIAL 0x0020 /* file access is primarily sequential */
#define _O_RANDOM 0x0010 /* file access is primarily random */
#define O_RDONLY _O_RDONLY
#define O_WRONLY _O_WRONLY
#define O_RDWR _O_RDWR
#define O_APPEND _O_APPEND
#define O_CREAT _O_CREAT
#define O_TRUNC _O_TRUNC
#define O_EXCL _O_EXCL
#define O_TEXT _O_TEXT
#define O_BINARY _O_BINARY
#define O_RAW _O_BINARY
#define O_TEMPORARY _O_TEMPORARY
#define O_NOINHERIT _O_NOINHERIT
#define O_SEQUENTIAL _O_SEQUENTIAL
#define O_RANDOM _O_RANDOM
#define _SH_DENYRW 0x10 /* deny read/write mode */
#define _SH_DENYWR 0x20 /* deny write mode */
#define _SH_DENYRD 0x30 /* deny read mode */
#define _SH_DENYNO 0x40 /* deny none mode */
long _lseek(int, long, int);
int _close(int);
int _read(int, void *, unsigned int);
int _write(int, const void *, unsigned int);
int _open( const char *filename, int oflag , int pmode );
int _chsize( int handle, long size );
int _sopen(const char *, int, int, ...);
char * _i64toa (__int64 val,char *buf,int radix);
char * _ui64toa (unsigned __int64 val,char *buf,int radix);
#if _WIN32_WCE < 0x502
int stricmp(const char* s1, const char* s2 );
int stricmp(const wchar_t* s1, const char* s2 );
#endif // _WIN32_WCE < 0x502
char* strdup( const char* s );
int strcasecmp(const char* s1, const char* s2 );
int strncasecmp(const char* s1, const char* s2, int n);
int strcasecmp(const wchar_t* s1, const char* s2 );
int strncasecmp(const wchar_t* s1, const char* s2, int n);
#ifdef __PSTRING__
int strcasecmp(PString s1, const char* s2);
#endif
LONG RegDeleteValue( HKEY hKey, const char* lpValueName );
LONG RegQueryValueEx( HKEY hKey, const char* lpValueName,
LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData );
LONG RegSetValueEx( HKEY hKey, const char* lpValueName,
DWORD Reserved, DWORD dwType, LPBYTE lpData, LPDWORD lpcbData );
LONG RegSetValueEx( HKEY hKey, const char* lpValueName, DWORD Reserved, DWORD dwType, const BYTE* lpData, DWORD cbData );
LONG RegCreateKeyEx( HKEY hKey, const char* lpSub, DWORD dwr, char* lpcls, DWORD dwo,
REGSAM sam, LPSECURITY_ATTRIBUTES lpsa, PHKEY phk, LPDWORD lpdw );
LONG RegEnumValueCe( HKEY hKey, DWORD dwIndex, LPTSTR lpValueName, LPDWORD lpcbValueName,
LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData );
LONG RegEnumKey(HKEY hKey, DWORD dwIndex, LPTSTR lpName, DWORD cbName);
UINT GetWindowsDirectory( char* lpBuffer, UINT uSize );
DWORD GetPrivateProfileString( const char* lpAppName, const char* lpKeyName,
const char* lpDefault, char* lpReturned, DWORD nSize, const char* );
BOOL WritePrivateProfileString(const char* lpAppName, const char* lpKeyName,
const char* lpString, const char* );
#endif // __cplusplus
#endif // _WIN32_WCE
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -