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

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -