search for: cb_loadfil

Displaying 2 results from an estimated 2 matches for "cb_loadfil".

Did you mean: cb_loadfile
2010 Apr 27
4
Patch sensible callback framework
...00000 -0600 +++ syslinux-3.86/com32/include/syslinux/callback.h 2010-04-26 09:05:45.000000000 -0500 @@ -0,0 +1,39 @@ +#ifndef LIBUTIL_CALLBACK_H +#define LIBUTIL_CALLBACK_H + +#include <stddef.h> +#include <stdio.h> +#include <inttypes.h> + +/* supported callback types */ +#define CB_LOADFILE 1 +#define CB_FLOADFILE 2 + +/* callback erros types */ +#define CBE_SUCCESS 0 +#define CBE_FAILED 1 +#define CBE_ALREADY_REGISTERED 2 +#define CBE_NOT_REGISTERED 3 + +/* supported callback types */ +#define CB_LOADFILE 1 +#define CB_FLOADFILE 2 + + +typede...
2010 Apr 23
1
Path simple menu integrated progress indicator
This patch modifies the simple menu com32 program to include integrated load progress. It also adds new options to the simple menu configuration MENU LOADMSG -- allows the user to specify the text to display when loading MENU LOADMSGROW -- controls where the text is written Example configuration: MENU LOADMSG Booting MENU LOADMSGROW 25 It works with my setup, please let me know if you find