diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ole2ui32/precomp.h | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to 'private/ole2ui32/precomp.h')
-rw-r--r-- | private/ole2ui32/precomp.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/private/ole2ui32/precomp.h b/private/ole2ui32/precomp.h new file mode 100644 index 000000000..40edf741d --- /dev/null +++ b/private/ole2ui32/precomp.h @@ -0,0 +1,29 @@ +/* + * PRECOMP.H + * + * This file is used to precompile the OLEDLG.H header file + * + * Copyright (c)1992 Microsoft Corporation, All Right Reserved + */ + +// only STRICT compiles are supported +#ifndef STRICT +#define STRICT +#endif + +#include "oledlg.h" +#include "olestd.h" +#include "resource.h" +#include "commctrl.h" +#ifndef WM_NOTIFY + +// WM_NOTIFY is new in later versions of Win32 +#define WM_NOTIFY 0x004e +typedef struct tagNMHDR +{ + HWND hwndFrom; + UINT idFrom; + UINT code; +} NMHDR; +#endif //!WM_NOTIFY + |