Advertisement

VC++ config question

Started by May 30, 2001 06:54 PM
2 comments, last by McAnthrax 23 years, 8 months ago
When using a class or struct with VC, a dropdown list will appear when you go to access a member. For example, PSOMEOBJECT-> will trigger an auto-complete list of all SOMEOBJECT''s members. I find this feature very useful, but it does not work with the classes of the gamelib i use (CDX). Can somone instruct a hopeless newb? thanks.
you have to add the .h files to your project

Magmai Kai Holmlor
- The disgruntled & disillusioned
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara
Advertisement
The headers are included in my project as "External Dependencies" and of course in #include statements in the actual code. The headers are found in the include path of the compiler.

This feature works for directdraw, which is inlcuded with only the #include ddraw.h and a link to ddraw.lib. Yet it does not work when I #include cdx.h and link to cdx.lib. Why not?
Add it as a project to your workspace. Should work then. I''ve found that the auto-select doesn''t work for files that have been identified as external dependencies.

This topic is closed to new replies.

Advertisement