Questions tagged [ncb]

NCB stands for "Non-Compiled Browse"

It is the database used by IntelliSense to allow one to browse the symbols defined in a project including the inline hints and auto completion as one types.

4 questions
1
vote
2 answers

Using Visual studio .ncb file for reflection

I am developing visual game level editor in C++. For this I want reflection(RTTI) mechanism to know class attributes at runtime. I am currently using PDB files for this.But using PDB I couldn't retrieve actual code line for extra information in…
Rushikesh Talokar
  • 1,515
  • 4
  • 16
  • 32
0
votes
0 answers

VC++ file equivalents in Dot_Net/C#

This is first time, I am trying to migrate one application from VC++ to Dot Net. During my analysis I found NCB, CLW, DSP, DSW, vcxproj and vcxproj.filter files in VC++ but I don't have any clue about their equivalents in Dot_Net/C#. (Note : before…
MrRaghav
  • 335
  • 3
  • 11
0
votes
2 answers

Internal format of Visual Studio .ncb files

I have decided that I really need to get some flowcharts for reverse engineering some code I have inherited. I do not have the Team edition of VS so I cannot use Team's built-in capabilities with Visio. So I thought I would parse the .ncb (Parser…
Harold Bamford
  • 1,589
  • 1
  • 14
  • 26
0
votes
1 answer

Why we use this syntax for NCB in C?

I have a question about NetBios NCB (Network Control Block).I wonder why we can use this syntax, as shown example below, if the structure doesn't have any pointers. UCHAR reset( NCB *block ) { block->ncb_command = NCBRESET; …