search for: cb_floadfil

Displaying 1 result from an estimated 1 matches for "cb_floadfil".

Did you mean: cb_floadfile
2010 Apr 27
4
Patch sensible callback framework
....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 + + +typedef struct callback_record {...