hola soy nuevo en esto del lenguaje c y c++ asi q estube viendo un tutorial q de paso ensena como usar las apis de windows aqui dejo el link http://www.portalhacker.net/index.ph...,100744.0.html le doy archivo->nuevo->proyecto->y elijo windows aplication bueno enpeso con lo primero crear una ventana y compilo sin problemas pero despues en la segunda parte dice crear menus y le agrego las lineas rojas q dice ahi pero cuando quiero compilar me sale esto 
C:\Users\saurio\Desktop\proyecto\main.cpp In function 'LRESULT WindowProcedure(HWND, UINT, WPARAM, LPARAM)'::
18 C:\Users\saurio\Desktop\proyecto\main.cpp:89 jump to case label [-fpermissive]
23 C:\Users\saurio\Desktop\proyecto\main.cpp:83   crosses initialization of 'HMENU__* menu2'
23 C:\Users\saurio\Desktop\proyecto\main.cpp:82   crosses initialization of 'HMENU__* menu1'
13 C:\Users\saurio\Desktop\proyecto\main.cpp:92 jump to case label [-fpermissive]
23 C:\Users\saurio\Desktop\proyecto\main.cpp:83   crosses initialization of 'HMENU__* menu2'
23 C:\Users\saurio\Desktop\proyecto\main.cpp:82   crosses initialization of 'HMENU__* menu1'
C:\Users\saurio\Desktop\proyecto\Makefile.win [Build Error]  [Objects/MingW/main.o] Error 1
 
incluso entro en la carpeta Objects/MingW pero no encuentro el archivo main.o esta vacia.
y el archivo makefile win me sale asi:
# Project: Proyecto1
# Compiler: Default GCC compiler
# Compiler Type: MingW 3
# Makefile created by wxDev-C++ IDE 7.4.2.542 on 04/04/12 01:00
 
WXLIBNAME = wxmsw29u
CPP       = g++.exe
CC        = gcc.exe
WINDRES   = "windres.exe"
OBJ       = Objects/MingW/main.o
LINKOBJ   = "Objects/MingW/main.o"
LIBS      = -L"C:/Program Files (x86)/Dev-Cpp/lib/wx/gcc_lib" -L"C:/Program Files (x86)/Dev-Cpp/lib" -L"C:/Program Files (x86)/Dev-Cpp/MinGW32/lib" -Wall -mwindows  
INCS      = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include"
CXXINCS   = -I"C:/Program Files (x86)/Dev-Cpp/MinGW32/include" -I"C:/Program Files (x86)/Dev-Cpp/" -I"C:/Program Files (x86)/Dev-Cpp/include/common"
RCINCS    = --include-dir "C:/PROGRA~2/Dev-Cpp/include/common"
BIN       = Output/MingW/Proyecto1.exe
DEFINES   = 
CXXFLAGS  = $(CXXINCS) $(DEFINES)  
CFLAGS    = $(INCS) $(DEFINES)  
GPROF     = gprof.exe
ifeq ($(OS),Windows_NT)
   RM = del /Q
   FixPath = $(subst /,\,$1)
else
   RM = rm -f
   FixPath = $1
endif
LINK      = g++.exe
 
.PHONY: all all-before all-after clean clean-custom
all: all-before $(BIN) all-after
 
clean: clean-custom
	$(RM) $(call FixPath,$(LINKOBJ)) "$(call FixPath,$(BIN))"
 
$(BIN): $(OBJ)
	$(LINK) $(LINKOBJ) -o "$(BIN)" $(LIBS) 
 
Objects/MingW/main.o: $(GLOBALDEPS) main.cpp
	$(CPP) -c main.cpp -o Objects/MingW/main.o $(CXXFLAGS)
 
supongo q tiene algo q ver con el archivo main.o y los menus q al parecer no los encuentra gracias por la ayuda. 
  
 

