mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
22 lines
449 B
C
22 lines
449 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 <windef.h>
|
|
#include <reactos/rossym.h>
|
|
#include "rossympriv.h"
|
|
|
|
ROSSYM_CALLBACKS RosSymCallbacks;
|
|
|
|
VOID
|
|
RosSymInit(PROSSYM_CALLBACKS Callbacks)
|
|
{
|
|
RosSymCallbacks = *Callbacks;
|
|
}
|
|
|
|
/* EOF */
|