mirror of https://github.com/tongzx/nt5src
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.
66 lines
700 B
66 lines
700 B
/*++
|
|
|
|
Copyright (c) 1990-1995 Microsoft Corporation
|
|
|
|
|
|
Module Name:
|
|
|
|
tvctrl.h
|
|
|
|
|
|
Abstract:
|
|
|
|
This module contains all defineds for the treeview
|
|
|
|
|
|
Author:
|
|
|
|
17-Oct-1995 Tue 16:39:11 created -by- Daniel Chou (danielc)
|
|
|
|
|
|
[Environment:]
|
|
|
|
NT Windows - Common Printer Driver UI DLL
|
|
|
|
|
|
[Notes:]
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#define MAGIC_INDENT 3
|
|
|
|
|
|
VOID
|
|
DeleteTVFonts(
|
|
PTVWND pTVWnd
|
|
);
|
|
|
|
BOOL
|
|
CreateTVFonts(
|
|
PTVWND pTVWnd,
|
|
HFONT hTVFont
|
|
);
|
|
|
|
LRESULT
|
|
CALLBACK
|
|
MyTVWndProc(
|
|
HWND hWnd,
|
|
UINT Msg,
|
|
WPARAM wParam,
|
|
LPARAM lParam
|
|
);
|
|
|
|
LRESULT
|
|
CALLBACK
|
|
FocusCtrlProc(
|
|
HWND hWnd,
|
|
UINT Msg,
|
|
WPARAM wParam,
|
|
LPARAM lParam
|
|
);
|