Module: wine Branch: master Commit: 275ac93e8db02d309f46d58af834bb5590481f0f URL: http://source.winehq.org/git/wine.git/?a=commit;h=275ac93e8db02d309f46d58af8...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Oct 17 11:07:08 2013 +0200
crypt32: Get rid of no longer used functions.
---
dlls/crypt32/context.c | 16 ---------------- 1 files changed, 0 insertions(+), 16 deletions(-)
diff --git a/dlls/crypt32/context.c b/dlls/crypt32/context.c index 65e9fab..02ec40d 100644 --- a/dlls/crypt32/context.c +++ b/dlls/crypt32/context.c @@ -76,22 +76,6 @@ void Context_AddRef(context_t *context) TRACE("(%p) ref=%d\n", context, context->ref); }
-void *Context_GetExtra(const void *context, size_t contextSize) -{ - BASE_CONTEXT *baseContext = BASE_CONTEXT_FROM_CONTEXT(context); - - assert(baseContext->linked != NULL); - return (LPBYTE)CONTEXT_FROM_BASE_CONTEXT(baseContext) + contextSize; -} - -void *Context_GetLinkedContext(void *context) -{ - BASE_CONTEXT *baseContext = BASE_CONTEXT_FROM_CONTEXT(context); - - assert(baseContext->linked != NULL); - return CONTEXT_FROM_BASE_CONTEXT(baseContext->linked); -} - CONTEXT_PROPERTY_LIST *Context_GetProperties(const void *context) { BASE_CONTEXT *ptr = BASE_CONTEXT_FROM_CONTEXT(context);