http://msdn2.microsoft.com/en-us/library/aa932539.aspx

This MSDN article has quite a few constants in it that I'd very much like to
use. However a large number of those constants aren't found in the header
file that the article says to include (winuser.h) and when I try to use them
are not found.

Can someone point me to where:
SPI_GETPLATFORMVERSION
SPI_GETPROJECTNAME
SPI_GETPLATFORMNAME
SPI_GETPLATFORMMANUFACTURER

are so I can reference them?

RE: SystemParametersInfoW missing constants by EdKramer

EdKramer
Mon Jun 18 15:01:02 CDT 2007

I am referring to windows mobile 5.0 incidentally.

"Ed Kramer" wrote:

> http://msdn2.microsoft.com/en-us/library/aa932539.aspx
>
> This MSDN article has quite a few constants in it that I'd very much like to
> use. However a large number of those constants aren't found in the header
> file that the article says to include (winuser.h) and when I try to use them
> are not found.
>
> Can someone point me to where:
> SPI_GETPLATFORMVERSION
> SPI_GETPROJECTNAME
> SPI_GETPLATFORMNAME
> SPI_GETPLATFORMMANUFACTURER
>
> are so I can reference them?

Re: SystemParametersInfoW missing constants by Peter

Peter
Mon Jun 18 16:19:08 CDT 2007

Some of these have been added subsequently to Windows Mobile 5.0. You'll
find them defined in winuser.h in the Windows Mobile 6 SDK.

#define SPI_GETPLATFORMTYPE 257
#define SPI_GETOEMINFO 258
#define SPI_GETPROJECTNAME 259
#define SPI_GETPLATFORMNAME 260
#define SPI_GETBOOTMENAME 261
#define SPI_GETPLATFORMMANUFACTURER 262
#define SPI_GETUUID 263
#define SPI_GETGUIDPATTERN 264

Peter

--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com

"Ed Kramer" <EdKramer@discussions.microsoft.com> wrote in message
news:237DC637-4541-402D-BB86-09ED871755A9@microsoft.com...
>I am referring to windows mobile 5.0 incidentally.
>
> "Ed Kramer" wrote:
>
>> http://msdn2.microsoft.com/en-us/library/aa932539.aspx
>>
>> This MSDN article has quite a few constants in it that I'd very much like
>> to
>> use. However a large number of those constants aren't found in the header
>> file that the article says to include (winuser.h) and when I try to use
>> them
>> are not found.
>>
>> Can someone point me to where:
>> SPI_GETPLATFORMVERSION
>> SPI_GETPROJECTNAME
>> SPI_GETPLATFORMNAME
>> SPI_GETPLATFORMMANUFACTURER
>>
>> are so I can reference them?


Re: SystemParametersInfoW missing constants by EdKramer

EdKramer
Mon Jun 18 16:48:00 CDT 2007

That's weird. Especially since the article I was looking at was for mobile
5.0. I don't suppose you have SPI_GETPLATFORMVERSION anywhere you can paste
me?

Incidentally the ones you list are giving me an error 1439: 'Invalid system
wide SPI* parameter". Any idea what .lib or header or whatever I might be
missing?

I just installed Windows Mobile SDK 6.0 for my own reference but I need to
get this working on 5.0.

Any help you can offer is appreciated. =)