util.h
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- /*****************************************************************************
- *
- * util.h - Shared stuff that operates on all classes
- *
- *****************************************************************************/
- #ifndef _UTIL_H
- #define _UTIL_H
- #include "dllload.h"
- extern HINSTANCE g_hinst;
- #define HINST_THISDLL g_hinst
- #ifdef UNICODE
- typedef WCHAR TUCHAR, *PTUCHAR;
- #else /* UNICODE */
- typedef unsigned char TUCHAR, *PTUCHAR;
- #endif /* UNICODE */
- #ifdef UNICODE
- #define AllocBStrFromString(psz) SysAllocString(psz)
- #define TCharSysAllocString(psz) SysAllocString(psz)
- #else
- extern BSTR AllocBStrFromString(LPTSTR);
- #define TCharSysAllocString(psz) AllocBStrFromString(psz)
- #endif
- #endif // _UTIL_H
English
