zdd
zdd

Reputation: 8727

Need mappings between win32 API and windows store app API

I want to convert my old windows app to Windows 8 store app, since windows 8 does not support win32 api, it use windows app store API(a wrapper of win32 api), so I want to know is there a mapping between the two apis? for example I use GetClientRect to get the window's client area in my old app, what's the equivalent in windows 8 api?

Upvotes: 1

Views: 265

Answers (1)

Marcus Ilgner
Marcus Ilgner

Reputation: 7211

See this list for a reference of supported Win32 functions in Windows Store Apps. Anything beyond those doesn't necessarily have a 1:1 mapping to a new function, so as @mydogisbox suggested, you'll have to learn the new API.

Upvotes: 3

Related Questions