Displaying 3 results from an estimated 3 matches for "efi_event".
2016 Feb 28
2
[PATCH 0/1] UEFI UDP/TFTP
...Changed 'ip' and 'port' in 'src_ip' and 'src_port'.
However: 'src_ip' and 'src_port' are not in
} + * @param:ip, the source ip address
} + * @param:port, the source port number, host-byte order
<snip/>
> -static EFIAPI void udp4_cb(EFI_EVENT event, void *context)
> +VOID
> +EFIAPI
> +UdpIoOnDgramSent (
> + IN EFI_EVENT event,
> + IN VOID* context
> + )
Such coding style change
did me really stop removing this unified patch.
Groeten
Geert Stappers
--
Leven en laten leven
------------- volgend deel ------------...
2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...rt;
+}RX;
+
+///
+/// Type defined as UDP_IO.
+/// This data structure wraps the UDP instance and configuration.
+///
+typedef struct {
+ uint16_t known_TID;
+ struct efi_binding* b;
+ EFI_UDP4* Protocol_Udp4;
+ EFI_UDP4_CONFIG_DATA Config_Udp4;
+ EFI_UDP4_COMPLETION_TOKEN* Token;
+ EFI_EVENT Timeout_Timer;
+ EFI_EVENT CB_OK_Event;
+ RX rx;
+}UDP_IO;
+
+
+#define EFI_IP4_EQUAL(Ip1, Ip2) (CompareMem ((Ip1), (Ip2), sizeof (EFI_IPv4_ADDRESS)) == 0)
+EFI_IPv4_ADDRESS mZeroIp4Addr = {{0, 0, 0, 0}};
+static BOOLEAN volatile UseDefaultSetting = TRUE;
+
extern EFI_GUID Udp4ServiceBind...
2016 Feb 24
6
[PATCH 2/5] ntfs: remove unused variable and have ntfssect use char API calls
The variable 'ok' is never used and generates a warning. Remove it. Also
ntfssect.c is designed to be compiled in non Unicode mode when using
MSVC compilers, so remove all ambiguity about it (LPCTSTR -> LPCSTR, use
of 'A' API calls) so that it doesn't break when compiled in Unicode
mode, which is what Rufus uses with MSVC.
-------------- next part --------------