windows-nt/Source/XPSP1/NT/enduser/stuff/hhctrl/cnotes.h

30 lines
443 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// Copyright (C) 1996-1997 Microsoft Corporation. All rights reserved.
#if _MSC_VER > 1000
#pragma once
#endif
#ifndef __CNOTES_H__
#define __CNOTES_H__
#include "secwin.h"
class CNotes
{
public:
CNotes(CHHWinType* phh);
~CNotes();
void HideWindow(void);
void ShowWindow(void);
void ResizeWindow(BOOL fClientOnly);
protected:
HWND m_hwndNotes;
HWND m_hwndEditBox;
BOOL m_fModified;
CHHWinType* m_phh;
};
#endif // __CNOTES_H__