change prototype

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@101 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Michael Jerris 2007-05-22 19:22:09 +00:00
parent b9d3b86363
commit 2ffac06178
2 changed files with 3 additions and 2 deletions

View File

@ -275,8 +275,9 @@ void Q931Initialize()
Return Value: none Return Value: none
*****************************************************************************/ *****************************************************************************/
void Q931TimeTick(L3ULONG ms) void Q931TimeTick(Q931_TrunkInfo *pTrunk, L3ULONG ms)
{ {
(void)pTrunk;
ms=ms; /* avoid warning for now. */ ms=ms; /* avoid warning for now. */
/* TODO: Loop through all active calls, check timers and call timour procs /* TODO: Loop through all active calls, check timers and call timour procs

View File

@ -2369,7 +2369,7 @@ L3INT Q931ProcUnexpectedMessage(Q931_TrunkInfo *pTrunk,L3UCHAR * b, L3INT iFrom)
Interface Function Prototypes. Implemented in Q931.c Interface Function Prototypes. Implemented in Q931.c
*****************************************************************************/ *****************************************************************************/
void Q931TimeTick(L3ULONG ms); void Q931TimeTick(Q931_TrunkInfo *pTrunk, L3ULONG ms);
L3INT Q931Rx23(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size); L3INT Q931Rx23(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);
L3INT Q931Tx32(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size); L3INT Q931Tx32(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);
L3INT Q931Rx43(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size); L3INT Q931Rx43(Q931_TrunkInfo *pTrunk, L3UCHAR * Mes, L3INT Size);