Forum: C Dec 24th, 2007 |
| Replies: 7 Views: 1,169 PUBLIC _PROTOTYPE indicates folowing routine is a System call handler. Systems-tasks are more like a hardware abstraction. The call_vec table is an array of function pointers that is indexed by the... |
Forum: C Dec 24th, 2007 |
| Replies: 7 Views: 1,169 >>PS2:: merry christmas to all!!
Same tt you! |
Forum: C Dec 24th, 2007 |
| Replies: 7 Views: 1,169 call_vec is a array of pointer to functions which pass void and return int.
PUBLIC _PROTOTYPE should be some typedef. |
Forum: C Dec 21st, 2007 |
| Replies: 3 Views: 4,188 It clearly indicates you have done things right!! |
Forum: C Dec 18th, 2007 |
| Replies: 2 Views: 756 Did you typedef LPCTSTR to flStr and OptStr? If not your function should look like
void checkOptions(LPCTSTR flStr,LPCTSTR OptStr)
{
int iArg = 1, x = 0, i = 0;
TCHAR eMsg[0x200];
i... |