Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AE86FD650 for ; Thu, 25 Oct 2012 17:10:35 +0000 (UTC) Received: (qmail 26655 invoked by uid 500); 25 Oct 2012 17:10:35 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 26634 invoked by uid 500); 25 Oct 2012 17:10:35 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 26627 invoked by uid 99); 25 Oct 2012 17:10:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Oct 2012 17:10:35 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Oct 2012 17:10:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B3D8623889F7 for ; Thu, 25 Oct 2012 17:09:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1402221 - /qpid/proton/trunk/proton-c/include/proton/cproton.i Date: Thu, 25 Oct 2012 17:09:48 -0000 To: commits@qpid.apache.org From: rhs@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121025170948.B3D8623889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhs Date: Thu Oct 25 17:09:48 2012 New Revision: 1402221 URL: http://svn.apache.org/viewvc?rev=1402221&view=rev Log: fixed swig interface typedefs Modified: qpid/proton/trunk/proton-c/include/proton/cproton.i Modified: qpid/proton/trunk/proton-c/include/proton/cproton.i URL: http://svn.apache.org/viewvc/qpid/proton/trunk/proton-c/include/proton/cproton.i?rev=1402221&r1=1402220&r2=1402221&view=diff ============================================================================== --- qpid/proton/trunk/proton-c/include/proton/cproton.i (original) +++ qpid/proton/trunk/proton-c/include/proton/cproton.i Thu Oct 25 17:09:48 2012 @@ -1,10 +1,10 @@ typedef unsigned int size_t; typedef signed int ssize_t; typedef unsigned char uint8_t; -typedef unsigned int uint32_t; -typedef unsigned long int uint64_t; -typedef int int32_t; -typedef long int int64_t; +typedef unsigned long int uint32_t; +typedef unsigned long long int uint64_t; +typedef long int int32_t; +typedef long long int int64_t; /* Parse these interface header files to generate APIs for script languages */ %include "proton/types.h" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org