Reputation: 501
What is the meaning of the warning in Turbo C++ compiler:
Linking *.exe: Linker Warning: No module definition file specified: using defaults
Upvotes: 2
Views: 1421
Reputation: 993095
A Module Definition File provides the linker with information about exports, attributes, and other information about the program to be linked.
You probably don't need to use one.
Upvotes: 1