oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Thu Aug 16, 2007 1:15 am Post subject: what is the problem? |
|
|
Ok. Well I was following theForger's tutorial for C++ programming of window applications and I got to resources. I had my main part which was the window(main.cpp). My resource file(resource.rc). And my header file(resource.h). Whenever I try to compile them I get this error about Makefile.win. It's whenever I try to compile my resource file though. I mean theres nothing wrong with it though right? Do you think its my compiler. I'm using Dev-Cpp
resource.rc
| Code: |
#include "resource.h"
IDR_MYMENU MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit", ID_FILE_EXIT
END
POPUP "&Stuff"
BEGIN
MENUITEM "&Go", ID_STUFF_GO
MENUITEM "G&o somewhere else", 0, GRAYED
END
END
IDI_MYICON ICON "menu_one.ico"
|
resource.h
| Code: |
#define IDR_MYMENU 101
#define IDI_MYICON 201
#define ID_FILE_EXIT 9001
#define ID_STUFF_GO 9002
|
_________________
| 8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|