2006-09-18 18:08:29 +00:00
|
|
|
#ifndef minimum_windows_declarations_h
|
|
|
|
#define minimum_windows_declarations_h
|
|
|
|
|
|
|
|
//Tell windows.h not to make declarations that we do not use
|
|
|
|
//See windows.h for descriptions of what is turned off by what.
|
|
|
|
|
|
|
|
#define NOGDICAPMASKS
|
|
|
|
#define NOVIRTUALKEYCODES
|
|
|
|
#define NOWINMESSAGES
|
|
|
|
#define NOWINSTYLES
|
|
|
|
#define NOSYSMETRICS
|
|
|
|
#define NOMENUS
|
|
|
|
#define NOICONS
|
|
|
|
#define NOKEYSTATES
|
|
|
|
#define NOSYSCOMMANDS
|
|
|
|
#define NORASTEROPS
|
|
|
|
#define NOSHOWWINDOW
|
|
|
|
#define OEMRESOURCE
|
|
|
|
#define NOATOM
|
|
|
|
#define NOCLIPBOARD
|
|
|
|
#define NOCOLOR
|
|
|
|
#define NOCTLMGR
|
|
|
|
#define NODRAWTEXT
|
|
|
|
#define NOGDI
|
|
|
|
#define NOKERNEL
|
|
|
|
#define NOUSER
|
|
|
|
#define NONLS
|
|
|
|
#define NOMB
|
|
|
|
#define NOMEMMGR
|
|
|
|
#define NOMETAFILE
|
2006-09-18 20:38:39 +00:00
|
|
|
#ifndef NOMINMAX
|
2006-09-18 18:08:29 +00:00
|
|
|
#define NOMINMAX
|
2006-09-18 20:38:39 +00:00
|
|
|
#endif
|
2006-09-18 18:08:29 +00:00
|
|
|
#define NOMSG
|
|
|
|
#define NOOPENFILE
|
|
|
|
#define NOSCROLL
|
|
|
|
#define NOSERVICE
|
|
|
|
#define NOSOUND
|
|
|
|
#define NOTEXTMETRIC
|
|
|
|
#define NOWH
|
|
|
|
#define NOWINOFFSETS
|
|
|
|
#define NOCOMM
|
|
|
|
#define NOKANJI
|
|
|
|
#define NOHELP
|
|
|
|
#define NOPROFILER
|
|
|
|
#define NODEFERWINDOWPOS
|
|
|
|
#define NOCRYPT
|
|
|
|
#define NOMCX
|
|
|
|
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|