Ticket #627: Fixed general compiler warning when building for WinCE (thanks David Parker for the patch).

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@2285 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Nanang Izzuddin 2008-09-16 16:45:29 +00:00
parent a78877d3ba
commit 0cff128244
9 changed files with 9 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#pragma once
#endif // _MSC_VER >= 1000
#pragma warning(disable:4496)
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers

View File

@ -289,7 +289,7 @@ static pj_bool_t on_rx_request(pjsip_rx_data *rdata)
rdata->msg_info.msg->line.req.method.id == PJSIP_INVITE_METHOD)
{
pjsip_dialog *dlg;
pjmedia_sdp_session *sdp;
pjmedia_sdp_session *sdp = NULL;
pj_str_t uri;
pjsip_tx_data *tdata;
pj_status_t status;

View File

@ -10,6 +10,7 @@
* See private.h for the more commonly used macro versions.
*/
#include "config.h"
#include <stdio.h>
#include <assert.h>

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/decode.c,v 1.1 1992/10/28 00:15:50 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include "private.h"

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/long_term.c,v 1.6 1996/07/02 12:33:19 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include <assert.h>

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/lpc.c,v 1.5 1994/12/30 23:14:54 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include <assert.h>

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/preprocess.c,v 1.2 1994/05/10 20:18:45 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include <assert.h>

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/rpe.c,v 1.3 1994/05/10 20:18:46 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include <assert.h>

View File

@ -6,6 +6,7 @@
/* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/short_term.c,v 1.2 1994/05/10 20:18:47 jutta Exp $ */
#include "config.h"
#include <stdio.h>
#include <assert.h>