I want to import uxtheme
to my c program and use some variable types that are in uxtheme.h
library.
When I use this and compile my project, my computer shows me some unreasonable error. Like this:
unknown type name 'DTTOPTS'
But I am sure that DTTOPTS
is defined in uxtheme.h
.
Why my PC shows me this error and how I can resolve it?
My Codes:
#include <studio.h>
#include <windows.h>
#include <uxtheme.h>
int main(){
DTTOPTS d;
return 0;
}