TLB.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:
Windows编程
开发平台:
Visual C++
- //==========================================================================;
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
- // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- // PURPOSE.
- //
- // Copyright (C) 1992 - 1997 Microsoft Corporation. All Rights Reserved.
- //--------------------------------------------------------------------------;
- //
- // tlb.h
- //
- // Description:
- // Contains function prototypes for the tabbed listbox functions in
- // tlb.c. Also contains Win16/Win32 portability definitions.
- //
- //
- //==========================================================================;
- #ifndef _INC_TLB
- #define _INC_TLB // #defined if file has been included
- #ifndef RC_INVOKED
- #pragma pack(1) // assume byte packing throughout
- #endif
- #ifndef EXTERN_C
- #ifdef __cplusplus
- #define EXTERN_C extern "C"
- #else
- #define EXTERN_C extern
- #endif
- #endif
- #ifdef __cplusplus
- extern "C" // assume C declarations for C++
- {
- #endif
- #ifdef WIN32
- //
- // for compiling Unicode
- //
- #ifndef SIZEOF
- #ifdef UNICODE
- #define SIZEOF(x) (sizeof(x)/sizeof(WCHAR))
- #else
- #define SIZEOF(x) sizeof(x)
- #endif
- #endif
- #else
- //
- // stuff for Unicode in Win 32--make it a noop in Win 16
- //
- #ifndef TEXT
- #define TEXT(a) a
- #endif
- #ifndef SIZEOF
- #define SIZEOF(x) sizeof(x)
- #endif
- #ifndef _TCHAR_DEFINED
- #define _TCHAR_DEFINED
- typedef char TCHAR, *PTCHAR;
- typedef unsigned char TBYTE, *PTUCHAR;
- typedef PSTR PTSTR, PTCH;
- typedef LPSTR LPTSTR, LPTCH;
- typedef LPCSTR LPCTSTR;
- #endif
- #endif
- //
- //
- //
- //
- typedef struct tTABBEDLISTBOX
- {
- HWND hlb;
- int nFontHeight;
- RECT rc;
- UINT uTabStops;
- PINT panTabs;
- PINT panTitleTabs;
- UINT cchTitleText;
- PTSTR pszTitleText;
- } TABBEDLISTBOX, *PTABBEDLISTBOX;
- #define TLB_MAX_TAB_STOPS 20 // max number of columns
- #define TLB_MAX_TITLE_CHARS 512
- //
- //
- //
- //
- //
- BOOL FAR PASCAL TlbPaint
- (
- PTABBEDLISTBOX ptlb,
- HWND hwnd,
- HDC hdc
- );
- BOOL FAR PASCAL TlbMove
- (
- PTABBEDLISTBOX ptlb,
- PRECT prc,
- BOOL fRedraw
- );
- HFONT FAR PASCAL TlbSetFont
- (
- PTABBEDLISTBOX ptlb,
- HFONT hfont,
- BOOL fRedraw
- );
- BOOL FAR PASCAL TlbSetTitleAndTabs
- (
- PTABBEDLISTBOX ptlb,
- PTSTR pszTitleFormat,
- BOOL fRedraw
- );
- PTABBEDLISTBOX FAR PASCAL TlbDestroy
- (
- PTABBEDLISTBOX ptlb
- );
- PTABBEDLISTBOX FAR PASCAL TlbCreate
- (
- HWND hwnd,
- int nId,
- PRECT prc
- );
- //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ;
- //
- //
- //
- //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ;
- #ifndef RC_INVOKED
- #pragma pack() // revert to default packing
- #endif
- #ifdef __cplusplus
- } // end of extern "C" {
- #endif
- #endif // _INC_TLB