chxavconvertutil.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:0k
- /*============================================================================*
- *
- * (c) 1995-2002 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *============================================================================*/
-
- #include <stdlib.h>
- #include "chxavconvertutil.h"
- bool CHXAvConvertUtil::StringToInt(const char* pBuf, int& value)
- {
- char* pEnd = 0;
- value = (int)strtol(pBuf, &pEnd, 10);
- return (*pBuf && *pEnd == ' ');
- }