mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
22 lines
650 B
C
22 lines
650 B
C
/*
|
|
* PROJECT: ReactOS Event Log Viewer
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: base/applications/mscutils/eventvwr/evtdetctl.h
|
|
* PURPOSE: Event Details Control
|
|
* PROGRAMMERS: Marc Piulachs (marc.piulachs at codexchange [dot] net)
|
|
* Eric Kohl
|
|
* Hermes Belusca-Maito
|
|
*/
|
|
|
|
#ifndef _EVTDETCTL_H_
|
|
#define _EVTDETCTL_H_
|
|
|
|
#define EVT_SETFILTER (WM_APP + 2)
|
|
#define EVT_DISPLAY (WM_APP + 3)
|
|
|
|
HWND
|
|
CreateEventDetailsCtrl(HINSTANCE hInstance,
|
|
HWND hParentWnd,
|
|
LPARAM lParam);
|
|
|
|
#endif /* _EVTDETCTL_H_ */
|