search for: curentry

Displaying 4 results from an estimated 4 matches for "curentry".

Did you mean: curently
2004 Feb 19
1
read codebook function
...cuted, the patter is not there anymore and there are only 8 BCV in my file. function fReadBits1 is the same as the ogg's read bit function. orry for the long function and to bother Adriano <p> -------------- next part -------------- int cOgg::readCodeBook(tOggCodebook *cb) { dword i, curEntry, num; byte curLength; // read sync pattern this->fRead((byte*) cb->sync, 3); cb->sync[3] = '\0'; // print info printf("Codebook sync pattern: %s\n", cb->sync); // check if pattern is valid if( strncmp(cb->sync, "BCV", 3) ) return 0; // read codebook...
2010 May 30
1
[RFC PATCH] menu: support single key booting
...entry *me) diff --git a/com32/menu/menumain.c b/com32/menu/menumain.c index 0c39264..3be1bd4 100644 --- a/com32/menu/menumain.c +++ b/com32/menu/menumain.c @@ -746,6 +746,7 @@ static const char *run_menu(void) { int key; int done = 0; + int hotkey = 0; volatile int entry = cm->curentry; int prev_entry = -1; volatile int top = cm->curtop; @@ -854,7 +855,12 @@ static const char *run_menu(void) } this_timeout = min(min(key_timeout, timeout_left), (clock_t) CLK_TCK); - key = mygetkey(this_timeout); + + if (hotkey && me->commit) + key = KEY_ENTER; + e...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing