?? assert.h
字號:
#ifndef SQLITE_WCE_ASSERT_H_20030607_INCLUDED
#define SQLITE_WCE_ASSERT_H_20030607_INCLUDED
/*
* This header is for Windows CE versions prior than 4.0 (.NET).
* They don't have an 'assert.h' header, so we define one here.
*
* If we see that a higher version is used, we try to include the
* standard header.
*
*/
#if !defined(_WIN32_WCE) || _WIN32_WCE >= 400
# include <../include/assert.h>
#else
# ifndef NDEBUG
# define assert(x) sqlitewce_assert(!!(x),#x,__FILE__,__LINE__)
# else
# define assert(x)
# endif
void sqlitewce_assert( int x, char * test, char * file, int line );
#endif
#endif // SQLITE_WCE_ASSERT_H_20030607_INCLUDED
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -