Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement that says Add a parameter to the user callback called (Currency.cpp (93)) which contains the delta.

Not sure how or what this means. Is there a correct syntax to add (Currency.cpp (93)) as a parameter? and i don't quite understand callbacks, I've done some research and having trouble grasping the concept. If someone could give a simple explanation maybe that help me in this situation.

here is the callback..

typedef void (*UserCallback)( AEnum_IntTrnCodes transactionCode, int requestID, int exchangeID, TTDataType data, void * arguments,  );

Thanks!

share|improve this question
1  
I think there might be a typo in the requirement, it doesn't make much sense. – Dan Oct 31 '12 at 13:24

closed as not a real question by 0x499602D2, Andrey, Luke Girvin, BNL, jogojapan Oct 31 '12 at 15:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Yes you can pass file name as const char* and a line number as an int The caller can then use __FILE__ and __LINE__ macros to pass it's location

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.