Displaying 4 results from an estimated 4 matches for "checkevent".
2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...RT (UseDefaultSetting);
+
+ udp = udp_io->Protocol_Udp4;
+
+ status = uefi_call_wrapper( BS->SetTimer, 3,
+ udp_io->Timeout_Timer,
+ TimerRelative,
+ UDP_TIME_TO_GETMAP
+ );
+
+ if (EFI_ERROR (status))
+ return FALSE;
+
+ while (EFI_ERROR ( uefi_call_wrapper(BS->CheckEvent, 1, udp_io->Timeout_Timer) ))
+ {
+ udp->Poll(udp);
+
+ if (!EFI_ERROR(udp->GetModeData(udp, NULL, &Ip4Mode, NULL, NULL)) &&
+ Ip4Mode.IsConfigured)
+ {
+ udp->Configure(udp, NULL);
+ return (BOOLEAN) (udp->Configure(udp, udata) == EFI_SUCCESS);
+ }
+ }
+...
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 --------------
2003 Jul 28
1
error when compiling oggplay
...`mymngquit':
oggplay.c:421: `stuff' undeclared (first use in this function)
oggplay.c:424: parse error before ')' token
oggplay.c:427: `mng' undeclared (first use in this function)
oggplay.c: At top level:
oggplay.c:436: parse error before "mng"
oggplay.c: In function `checkevents':
oggplay.c:448: `mng' undeclared (first use in this function)
oggplay.c: In function `main':
oggplay.c:464: `stuff' undeclared (first use in this function)
oggplay.c:465: `mng_handle' undeclared (first use in this function)
oggplay.c:465: parse error before "mng"
ogg...
2007 Jul 27
0
Wine release 0.9.42
...MASK_NO_CONSOLE flag as default.
Konstantin Kondratyuk (1):
ntdll: Add Samara time zone.
Kov?cs Andr?s (1):
include: Add some idl headers for d3d10.
Maarten Lankhorst (7):
dsound: Make sure secondary_remainder and buflen are aligned to primary buffer in mixer.
dsound: Fix CheckEvent in mixer.
dsound: Some cosmetic changes.
winealsa: Minor fixes to ds output.
wineoss: Make sure writepos < buflen for dsrender.
winmm: Don't operate on freed data in timer.
dsound: Allow mixing the same buffer multiple times if we are looping.
Marcus Meissner (...