[comp.windows.ms] PROGRAMMING QUESTION: API call to get current mode?

henshaj@prism.CS.ORST.EDU (Jeff D. Henshaw) (03/07/91)

Programming Question:

What is the API call to get the current mode of operation
(real, standard, 386 enh)?  It appears when one pulls
down the HELP menu from program manager, and select 
<about program manager>.  I've Read TFMs, but I must be
overlooking something.

A post or email would be much appreaciated.
Thanks in advance!

-Jeff D. Henshaw
Oregon State University Dept. of Computer Science
e-mail: henshaj@prism.cs.orst.edu  |  uunet!prism.cs.orst.edu

curt@cctb.wa.com (Curt Johnson) (03/08/91)

Ignore this if it is a duplicate, the first time I tried
didn't seem to work.

In article <1991Mar07.043206.13109@lynx.CS.ORST.EDU> henshaj@prism.CS.ORST.EDU (Jeff D. Henshaw) writes:
| What is the API call to get the current mode of operation
| (real, standard, 386 enh)?  It appears when one pulls
| down the HELP menu from program manager, and select 
| <about program manager>.  I've Read TFMs, but I must be
| overlooking something.

TFM == MS Windows SDK Reference Volume 1 Chapter 4 Page 232.

GetWinFlags(); returns a DWORD of flags, including:
	WF_ENHANCED
	WF_STANDARD
	WF_PMODE

Curt Johnson == curt@cctb.wa.com