From 6560dc9a0516abe4b0f364ba7d4759c92b4456e2 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 11 Apr 2011 10:18:06 +0000 Subject: [PATCH] Evas: Add EVAS_API_RESET that overrides API with NULL. SVN revision: 58541 --- legacy/evas/src/lib/include/evas_private.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/evas/src/lib/include/evas_private.h b/legacy/evas/src/lib/include/evas_private.h index 580653ce4a..0957c6e02a 100644 --- a/legacy/evas/src/lib/include/evas_private.h +++ b/legacy/evas/src/lib/include/evas_private.h @@ -913,6 +913,8 @@ struct _Evas_Mempool #define EVAS_API_OVERRIDE(func, api, prefix) \ (api)->func = prefix##func +#define EVAS_API_RESET(func, api) \ + (api)->func = NULL #include "evas_inline.x"