fatal error RC1015: cannot open include file 'atlres.h'

Problems compiling? Don't understand the source code? Don't know how to code your feature? Post here.

Moderator: Moderators

Locked
[PT]fLaSh
Posts: 9
Joined: 2006-11-06 14:32
Location: Portugal

fatal error RC1015: cannot open include file 'atlres.h'

Post by [PT]fLaSh » 2006-11-24 00:31

VC++ 7.1 (Visual Studio .NET 2003 Enterprise)
I am to try to compile "RevConnect 0,674".. I am with a problem... the error that occurs is the following one:

Code: Select all

c:\Documents and Settings\Carlos\Ambiente de trabalho\p2p Source Code Clients\RevConnect 0.674\revconnect-0.674p-src\DCPlusPlus.rc(10): fatal error RC1015: cannot open include file 'atlres.h'.
If somebody will be able to help me, is thankful... :)

Guitarm
Forum Moderator
Posts: 385
Joined: 2004-01-18 15:38

Post by Guitarm » 2006-11-24 07:09

This is not a Revconnect Support forum. But I'll try to help you anyway. Change a line in DCPlusPlus.rc to

Code: Select all

#include "atlres.h"
or

Code: Select all

#include <atlres.h>
depending on where your atlres.h lives.
"Nothing really happens fast. Everything happens at such a rate that by the time it happens, it all seems normal."

Pothead
Posts: 223
Joined: 2005-01-15 06:55

Post by Pothead » 2006-11-24 10:22

And make sure you have got WTL included properly. :)

Locked