A
Anna Smidt
I have moved this to a new topic now.
I think I'm going crazy: I have searched for 2 hours now where the
actual code is that implements these functions. Without success. I have
looked at all include files over and over again, but there is no point
that would tell me where these voids are actually from. I also took a
look at the Object Browser, but it didn't show any of my prototypes.
What would be the next step you would do to find out where the real
functions are?
Anna
This is a totally new question, you should have started a new thread
with an
appropriate subject line.
To answer your question, the lines you show are prototypes aka forward
declarations. The actual code implementing these functions is elsewhere.
This separation of interface and implementation is something that many
other
C-syntax languages (Java, C#, etc) do not allow.
I think I'm going crazy: I have searched for 2 hours now where the
actual code is that implements these functions. Without success. I have
looked at all include files over and over again, but there is no point
that would tell me where these voids are actually from. I also took a
look at the Object Browser, but it didn't show any of my prototypes.
What would be the next step you would do to find out where the real
functions are?
Anna
This is a totally new question, you should have started a new thread
with an
appropriate subject line.
To answer your question, the lines you show are prototypes aka forward
declarations. The actual code implementing these functions is elsewhere.
This separation of interface and implementation is something that many
other
C-syntax languages (Java, C#, etc) do not allow.