hello,
I'm looking for some help, please :) I'm programming a little win32 application, and I see that it is not compiling with devc++
my programm is composed of
one file *.c one file *.h and one resource file *.rc
when I compile, devc++ creates a nicobus_private.rc (nicobus, thats the name of the project)...
first, I don't know devc++ creates this file...
then, it tells me :
Makefile.win [Build Error] [nicobus_private.res] Error 1
I don't understand at all !!! :o(
can you help me ? my code is there : nicolas.aunai.free.fr/scanner/
thanks a lot
of course : http://nicolas.aunai.free.fr/scanner/
There are 2 problems with your resource file:
1. the #ifdef __LCC__ that doesn't allow the resource compiler to scan windows.h.
2. the lines starting with IDICON200 that doesn't mean anything. What is supposed to be that?
You keep LCC specific code in, and you wonder why it doesn't work? Sounds like something I might do!
Once you get past that, you are going to need to link the right libraries too...
Wayne
Log in to post a comment.
hello,
I'm looking for some help, please :)
I'm programming a little win32 application, and I see that it is not compiling with devc++
my programm is composed of
one file *.c
one file *.h
and one resource file *.rc
when I compile, devc++ creates a nicobus_private.rc (nicobus, thats the name of the project)...
first, I don't know devc++ creates this file...
then, it tells me :
Makefile.win
[Build Error] [nicobus_private.res] Error 1
I don't understand at all !!! :o(
can you help me ? my code is there :
nicolas.aunai.free.fr/scanner/
thanks a lot
of course : http://nicolas.aunai.free.fr/scanner/
There are 2 problems with your resource file:
1. the #ifdef __LCC__ that doesn't allow the resource compiler to scan windows.h.
2. the lines starting with IDICON200 that doesn't mean anything. What is supposed to be that?
You keep LCC specific code in, and you wonder why it doesn't work? Sounds like something I might do!
Once you get past that, you are going to need to link the right libraries too...
Wayne