mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
9ea495ba33
svn path=/branches/header-work/; revision=45691
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 */
|