Bonjour,
A chaque fois que j'exécute mon programme sous Dev C++, j'obtiens cettte erreur:[Linker error] undefined reference to '_Z7WndProccP6HWND_jj@16'
Connaissez vous pourquoi? Avez vous une solution.
Merci,
Ibrahima
Makefile:
# Project: Ouvrir un fichier
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = Main.o Plotgraph.o $(RES)
LINKOBJ = Main.o Plotgraph.o $(RES)
LIBS = -L"C:/Dev-Cpp/lib" -mwindows
INCS = -I"C:/Dev-Cpp/include"
CXXINCS = -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward"
-I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
BIN = "Ouvrir un fichier.exe"
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before "Ouvrir un fichier.exe" all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o "Ouvrir un fichier.exe" $(LIBS)
Main.o: Main.cpp
$(CPP) -c Main.cpp -o Main.o $(CXXFLAGS)
Plotgraph.o: Plotgraph.cpp
$(CPP) -c Plotgraph.cpp -o Plotgraph.o $(CXXFLAGS)