1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS kernel 4 * FILE: lib/rossym/data.c 5 * PURPOSE: Definition of external variables 6 * 7 * PROGRAMMERS: Ge van Geldorp (gvg@reactos.com) 8 */ 9 10 #include <windef.h> 11 #include <reactos/rossym.h> 12 #include "rossympriv.h" 13 14 ROSSYM_CALLBACKS RosSymCallbacks; 15 16 VOID 17 RosSymInit(PROSSYM_CALLBACKS Callbacks) 18 { 19 RosSymCallbacks = *Callbacks; 20 } 21