How to add an additional variable type? #9737
-
Beta Was this translation helpful? Give feedback.
Answered by
sean-mcmanus
Aug 15, 2022
Replies: 1 comment 10 replies
-
You could set the "forcedInclude" property to be some file with additional definitions or use some code like #ifdef __INTELLISENSE__
// other defs
#endif in an existing header. Also, I'm assuming you're using the "C/C++" extension (this extension). If you're using the "C/C++ Intellisense" extension that you would be a different one. |
Beta Was this translation helpful? Give feedback.
10 replies
Answer selected by
Ruslan618
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could set the "forcedInclude" property to be some file with additional definitions or use some code like
in an existing header.
Also, I'm assuming you're using the "C/C++" extension (this extension). If you're using the "C/C++ Intellisense" extension that you would be a different one.