mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
e1d334794a
This was a MinGW-specific, non-MS-DDK/WDK-compatible define, that was used to mark NTOS kernel/hal exports, instead of NTSYSAPI etc. We have since fixed that, and changed the way Freeldr (and rossym) manages these, see commits:186c8b72d
(r16028),51f0dfd30
(r17651) and526efd2ee
(r24359)
19 lines
383 B
C
19 lines
383 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: lib/rossym/delete.c
|
|
* PURPOSE: Free rossym info
|
|
*
|
|
* PROGRAMMERS: Ge van Geldorp (gvg@reactos.com)
|
|
*/
|
|
|
|
#include <ntdef.h>
|
|
#include <reactos/rossym.h>
|
|
#include "rossympriv.h"
|
|
|
|
VOID
|
|
RosSymDelete(PROSSYM_INFO RosSymInfo)
|
|
{
|
|
RosSymFreeMem(RosSymInfo);
|
|
}
|