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
Post a Comment