Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
util.h
Package: shell.rar [view]
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:
Windows Kernel
Development Platform:
Visual C++
- /*
- * util.h - Utility routines description.
- */
- /* Prototypes
- *************/
- /* util .c */
- extern BOOL IsPathDirectory(PCSTR);
- extern BOOL KeyExists(HKEY, PCSTR);
- BOOL
- StrToIntExW(
- LPCWSTR pwszString,
- DWORD dwFlags, // STIF_ bitfield
- int FAR * piRet);
- BOOL
- StrToIntExA(
- LPCSTR pszString,
- DWORD dwFlags, // STIF_ bitfield
- int FAR * piRet);
- #ifdef UNICODE
- #define StrToIntEx StrToIntExW
- #else
- #define StrToIntEx StrToIntExA
- #endif
- // Avoid conflict with Nashville commctrl
- #ifdef STIF_SUPPORT_HEX
- #undef STIF_DEFAULT
- #undef STIF_SUPPORT_HEX
- #endif
- // Flags for StrToIntEx
- #define STIF_DEFAULT 0x00000000L
- #define STIF_SUPPORT_HEX 0x00000001L
- int
- StrSpnW(
- LPCWSTR psz,
- LPCWSTR pszSet);
- int
- StrSpnA(
- LPCSTR psz,
- LPCSTR pszSet);
- #ifdef UNICODE
- #define StrSpn StrSpnW
- #else
- #define StrSpn StrSpnA
- #endif
- LPWSTR
- StrPBrkW(
- IN LPCWSTR psz,
- IN LPCWSTR pszSet);
- LPSTR
- StrPBrkA(
- LPCSTR psz,
- LPCSTR pszSet);
- #ifdef UNICODE
- #define StrPBrk StrPBrkW
- #else
- #define StrPBrk StrPBrkA
- #endif
- /* Win95 Kernel only stubs lstrcpyW. Memphis Kernel supports it.
- ** Use SHLWAPI's version.
- */
- #define lstrcpyW StrCpyW
- #ifdef DEBUG
- extern BOOL IsStringContained(PCSTR, PCSTR);
- #endif