c++ - identifying the architecture of an application -


is there way figure out architecture application implementing?

i'm trying figure out whether either win32, wpf or windows form being used 3rd party application.

thanks help

you @ exes , dlls of application, e.g. using ilspy.

wpf , winforms far know limited .net framework. if not .net exe, , ilspy not parse it, win32.

if .net exe, @ references. if wpf specific dlls referenced, wpf. if winforms specific dlls, winforms. if both, need trace program starting main method find evidence, api used.

but either way, no strong evidence. both apis mixed, , there windows or elements of each used. since winforms wrapper of native win32 api, whenever use winforms use win32 api.

so depends on need know.


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -