mirror of https://github.com/acidanthera/audk.git
Fixed GCC 4.4 build issue. All protocols and public interfaces must specify EFIAPI to enforce the expected calling convention.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10378 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4e57f24098
commit
66c95e799a
|
@ -321,7 +321,7 @@ typedef struct {
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
(*EFI_DHCP6_CALLBACK)(
|
(EFIAPI *EFI_DHCP6_CALLBACK)(
|
||||||
IN EFI_DHCP6_PROTOCOL *This,
|
IN EFI_DHCP6_PROTOCOL *This,
|
||||||
IN VOID *Context,
|
IN VOID *Context,
|
||||||
IN EFI_DHCP6_STATE CurrentState,
|
IN EFI_DHCP6_STATE CurrentState,
|
||||||
|
@ -400,7 +400,7 @@ typedef struct {
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
(*EFI_DHCP6_INFO_CALLBACK)(
|
(EFIAPI *EFI_DHCP6_INFO_CALLBACK)(
|
||||||
IN EFI_DHCP6_PROTOCOL *This,
|
IN EFI_DHCP6_PROTOCOL *This,
|
||||||
IN VOID *Context,
|
IN VOID *Context,
|
||||||
IN EFI_DHCP6_PACKET *Packet
|
IN EFI_DHCP6_PACKET *Packet
|
||||||
|
|
Loading…
Reference in New Issue