?? ddlutils.h.svn-base
字號:
/***************************************************************************
* $Id: ddlutils.h,v 1.46 2008/07/02 13:10:14 kawalccjims Exp $
* $Revision: 1.46 $
* $DateTime: $
*
* IMPORTANT NOTICE
*
* Please note that any and all title and/or intellectual property rights
* in and to this Software or any part of this (including without limitation
* any images, photographs, animations, video, audio, music, text and/or
* "applets," incorporated into the Software), herein mentioned to as
* "Software", the accompanying printed materials, and any copies of the
* Software, are owned by Jataayu Software (P) Ltd., Bangalore ("Jataayu")
* or Jataayu's suppliers as the case may be. The Software is protected by
* copyright, including without limitation by applicable copyright laws,
* international treaty provisions, other intellectual property laws and
* applicable laws in the country in which the Software is being used.
* You shall not modify, adapt or translate the Software, without prior
* express written consent from Jataayu. You shall not reverse engineer,
* decompile, disassemble or otherwise alter the Software, except and
* only to the extent that such activity is expressly permitted by
* applicable law notwithstanding this limitation. Unauthorized reproduction
* or redistribution of this program or any portion of it may result in severe
* civil and criminal penalties and will be prosecuted to the maximum extent
* possible under the law. Jataayu reserves all rights not expressly granted.
*
* THIS SOFTWARE IS PROVIDED TO YOU "AS IS" WITHOUT WARRANTY OF ANY
* KIND AND ANY AND ALL REPRESENTATION AND WARRANTIES, EITHER EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY ACCURACY OF INFORMATIONAL CONTENT, AND/OR FITNESS
* FOR A PARTICULAR PURPOSE OR USE, TITLE OR INFRINGEMENT ARE EXPRESSLY
* DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. YOU ASSUME THE
* ENTIRE RISK AS TO THE ACCURACY AND THE USE OF THIS SOFTWARE. JATAAYU
* SHALL NOT BE LIABLE FOR ANY CONSEQUENTIAL, INCIDENTAL, INDIRECT,
* EXEMPLARY, SPECIAL OR PUNITIVE DAMAGES INCLUDING WITHOUT LIMITATION
* ANY LOSS OF DATA, OR; LOSS OF PROFIT, SAVINGS BUSINESS OR GOODWILL
* OR OTHER SIMILAR LOSS RESULTING FROM OR OUT OF THE USE OR INABILITY
* TO USE THIS SOFTWARE, EVEN IF JATAAYU HAS BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE, OR FOR ANY CLAIM BY ANY THIRD PARTY.
*
***************************************************************************
*
* Revision Details
* ----------------
* $Log: ddlutils.h,v $
* Revision 1.46 2008/07/02 13:10:14 kawalccjims
* *** empty log message ***
*
*
* 12 30/07/07 4:06p Anupr
*
* 11 16/04/07 7:15p Anupr
*
* 10 16/04/07 1:01p Anupr
* Revision 1.4 2005/09/12 12:17:43 kumardevhtmlbrow
* Given the additional new line at the end ....
*
* Revision 1.3 2005/06/04 07:59:57 kumardevhtmlbrow
* no message
*
* Revision 1.2 2005/03/22 10:59:41 kumardevhtmlbrow
* Update the license agreement
*
*
***************************************************************************/
#ifndef _DDLUTILS_H
#define _DDLUTILS_H
#if defined(WIN32) || defined(_WIN32)
#define jc_strlen strlen
#define jc_strcpy strcpy
#define jc_strstr strstr
#define jc_strchr strchr
#define jc_strncpy strncpy
#define jc_strncmp strncmp
#define jc_isxdigit isxdigit
#define jc_isascii isascii
//#ifdef BROADCOM
#if (_MSC_VER <= 1200)
#define jc_strcasecmp stricmp //_stricmp
#define jc_strncasecmp strnicmp
#define jc_wstrcasecmp wcsicmp//_wcsicmp
#define jc_itoa itoa
#define jc_ltoa ltoa
#define jc_atoi atoi
#define jc_atof atof
#define jc_atol atol
#define jc_itow _itow
#else /*Win32 jIM*/
#define jc_strcasecmp _stricmp
#define jc_strncasecmp _strnicmp
#define jc_wstrcasecmp _wcsicmp
#define jc_itoa _itoa
#define jc_ltoa _ltoa
#define jc_atoi atoi
#define jc_atof atof
#define jc_atol atol
#define jc_itow _itow
#endif /*(_MSC_VER <= 1200)*/
#define jc_strcmp strcmp
#define jc_strcat strcat
#define jc_strrchr strrchr
#define jc_strncat strncat
#define jc_wstrcpy wcscpy
#define jc_wstrlen wcslen
#define jc_wstrcmp wcscmp
#define jc_wstrncasecmp wcsnicmp
#define jc_wstrncmp wcsncmp
#define jc_wstrcat wcscat
#define jc_wstrncpy wcsncpy
#define jc_wstrstr wcsstr
#define jc_wstrncat wcsncat
#define jc_wstrchr wcschr
#define jc_wstrrchr wcsrchr
#define jc_isalpha isalpha
#define jc_isspace isspace
#define jc_isdigit isdigit
#define jc_isalnum isalnum
#define jc_islower islower
#define jc_isupper isupper
#define jc_toupper toupper
#define jc_tolower tolower
#define jc_strtol strtol
#define jc_wsprintf swprintf
#define jc_wsnprintf _snwprintf
#define jc_sprintf sprintf
#define jc_snprintf snprintf
#define jc_vsnwprintf _vsnwprintf
#define jc_memcmp memcmp
#define jc_memcpy memcpy
#define jc_memset memset
#define jc_memmove memmove
#define jc_srand srand
#define jc_rand rand
#define jc_pow pow
#define jc_floor floor
#define jc_ceil ceil
#define jc_abs abs
#else/*defined(WIN32) || defined(_WIN32)*/
#define jc_strlen strlen
#define jc_strcpy strcpy
#define jc_strstr strstr
#define jc_strchr strchr
#define jc_strncpy strncpy
#define jc_strncmp strncmp
#define jc_strcasecmp MStrCaseCmp
#define jc_strncasecmp MStrNCaseCmp
#define jc_strcmp strcmp
#define jc_strcat strcat
#define jc_strrchr strrchr
#define jc_strncat strncat
#define jc_wstrcpy MWcsCpy
#define jc_wstrlen MWcsLen
#define jc_wstrcmp MWcsCmp
#define jc_wstrcasecmp MWStrCaseCmp
#define jc_wstrncasecmp MWStrNCaseCmp
#define jc_wstrcat MWcsCat
#define jc_wstrncpy MWcsNCpy
#define jc_wstrstr MWcsStr
#define jc_wstrncat MWcsNCat
#define jc_wstrchr MWcsChr
#define jc_wstrrchr MWcsRChr
#define jc_isalpha isalpha
#define jc_isspace isspace
#define jc_isdigit isdigit
#define jc_isalnum isalnum
#define jc_islower islower
#define jc_isupper isupper
#define jc_toupper toupper
#define jc_tolower tolower
#define jc_isascii isascii
#define jc_isxdigit isxdigit
#define jc_itoa itoa
#define jc_ltoa ltoa
#define jc_atoi atoi
#define jc_atof atof
#define jc_atol atol
#define jc_itow MIToW
#define jc_strtol strtol
#define jc_wsprintf MStrWPrintf
#define jc_wsnprintf MStrNWPrintf
#define jc_vsnwprintf MvStrNWPrintf
#define jc_sprintf sprintf
#define jc_snprintf snprintf
#define jc_memcmp memcmp
#define jc_memcpy memcpy
#define jc_memset memset
#define jc_memmove memmove
#define jc_srand srand
#define jc_rand rand
#define jc_pow pow
#define jc_floor floor
#define jc_ceil ceil
#define jc_abs abs
#endif /*defined(WIN32) || defined(_WIN32)*/
#endif/*_DDLUTILS_H*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -