mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
22 lines
450 B
C
22 lines
450 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: lib/rossym/data.c
|
|
* PURPOSE: Definition of external variables
|
|
*
|
|
* PROGRAMMERS: Ge van Geldorp (gvg@reactos.com)
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <reactos/rossym.h>
|
|
#include "rossympriv.h"
|
|
|
|
ROSSYM_CALLBACKS RosSymCallbacks;
|
|
|
|
VOID
|
|
RosSymInit(PROSSYM_CALLBACKS Callbacks)
|
|
{
|
|
RosSymCallbacks = *Callbacks;
|
|
}
|
|
|
|
/* EOF */
|