CreateWindow / CreateWindowEx
-
What is the difference between CreateWindow and CreateWindowEx? I know of the extra functionality provided by using the CreateWindowEx, but is their any difference in performance. Is my program missing out on any other speed or interaction functionality by using the older CreateWindow function?
-
What is the difference between CreateWindow and CreateWindowEx? I know of the extra functionality provided by using the CreateWindowEx, but is their any difference in performance. Is my program missing out on any other speed or interaction functionality by using the older CreateWindow function?
Calling
CreateWindow
will internally callCreateWindowEx
. I confirmed this using Windbg.«_Superman_»
I love work. It gives me something to do between weekends. -
What is the difference between CreateWindow and CreateWindowEx? I know of the extra functionality provided by using the CreateWindowEx, but is their any difference in performance. Is my program missing out on any other speed or interaction functionality by using the older CreateWindow function?
difference is,later function takes one extra parameter. Actually, CreateWindow is a macro, expanding to CreateWindowEx with NULL(no extended style) as first parameter. In effect you are using only one function.