Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//==========================================================================;
//
// 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 - 1994 Microsoft Corporation. All Rights Reserved.
//--------------------------------------------------------------------------;
//
// tlb.h
//
// Description:
//
//
//
//==========================================================================;
#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
|