24 lines
519 B
C
24 lines
519 B
C
/****************************** Module Header ******************************\
|
|
* Module Name: wndstuff.h
|
|
*
|
|
* Created: 23 December 1999
|
|
* Author: Adrian Secchia [asecchia]
|
|
*
|
|
* Copyright (c) 1999 Microsoft Corporation
|
|
\***************************************************************************/
|
|
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <winuser.h>
|
|
#include <commdlg.h>
|
|
|
|
#define DONTUSE(x) (x)
|
|
|
|
#define IDM_OPENFILE 40000
|
|
#define IDM_QUIT 40001
|
|
|
|
VOID PaintWindow(HDC hdc);
|
|
|
|
|
|
|