Composite Dirext X 9 with Windows SDK 6.1, Visual Stdio 2005
The reason you need the following changes, 'Visual Stdio' grammar that is more intense. (in Syntax)
0. Directory Order Setting
1. DX9
2. Windows SDK 6.1
3. etc.
1. Modify contents of 'winnt.h' : 32bit OS
before)
typedef void * PVOID;
typedef void * POINTER_64 PVOID64;
after)
typedef void* PVOID;
typedef void* POINTER_64;
typedef POINTER_64 PVOID64;
2. modify code about 'Scope'
ex)
before)
int b =0;
for(int a = 0; a <100; a ++){
b = b + 1;
}
printf("%d==>%d\n", a, b); //<====
after)
int a =0;
int b = 0;
for(a = 0; a < 100; a++){
b = b + a;
}
printf("%d==>%d\n", a, b);
3. error with 'd3dx9_24.dll' file not existing
Sol) Redist package install