rc.exe

Do I need afxres.h, if I am not using MFC? How do I remove it from the .RC script?

I don't know RC scripts. I want to include Product version, File version, etc. metadata into a DLL I'm building. I'm using an .rc file to do that. The build is makefile driven. I'm following along with an example .rc scrpit I found. The template .rc file includes afxres.h , but I don't think I need that. But if I just remove it I ...

visual c++ rc.exe

hello i have a problem i use visual studio 2008, and i chose a .cpp in visual c++ at first i copied a tutorial sample #include <stdio.h> int main() { int x=1; int n =1; printf("Wie viele Zahlen wollen sie ausgeben lassen?: "); for(int i=0; i < n; ++i) { x*=i; // x=x*i printf("%d: %d\n", i, x); } return 0; } but i get ...