⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assert.h

📁 sqlite源码wince移植版
💻 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 + -