From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 2F88F820EA for ; Wed, 15 Feb 2017 17:19:30 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 15 Feb 2017 17:19:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,167,1484035200"; d="scan'208";a="59009944" Received: from jiaxinwu-mobl2.ccr.corp.intel.com ([10.239.196.71]) by orsmga004.jf.intel.com with ESMTP; 15 Feb 2017 17:19:28 -0800 From: Jiaxin Wu To: edk2-devel@lists.01.org Cc: Laszlo Ersek , Gerd Hoffmann , Ye Ting , Fu Siyuan , Wu Jiaxin Date: Thu, 16 Feb 2017 09:19:26 +0800 Message-Id: <1487207966-42416-1-git-send-email-jiaxin.wu@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 Subject: [Patch] NetworkPkg/HttpBootDxe: Declare the functions as EFIAPI to pass the GCC build X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Feb 2017 01:19:30 -0000 Cc: Laszlo Ersek Cc: Gerd Hoffmann Cc: Ye Ting Cc: Fu Siyuan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin --- NetworkPkg/HttpBootDxe/HttpBootSupport.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NetworkPkg/HttpBootDxe/HttpBootSupport.c b/NetworkPkg/HttpBootDxe/HttpBootSupport.c index d786d72..e831df9 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootSupport.c +++ b/NetworkPkg/HttpBootDxe/HttpBootSupport.c @@ -629,10 +629,11 @@ HttpBootSetHeader ( @param[in] Context The opaque parameter to the function. **/ VOID +EFIAPI HttpIoNotifyDpc ( IN VOID *Context ) { *((BOOLEAN *) Context) = TRUE; @@ -644,10 +645,11 @@ HttpIoNotifyDpc ( @param[in] Event The event signaled. @param[in] Context The opaque parameter to the function. **/ VOID +EFIAPI HttpIoNotify ( IN EFI_EVENT Event, IN VOID *Context ) { -- 1.9.5.msysgit.1