mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
20 lines
399 B
C
20 lines
399 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 ([email protected])
|
|
*/
|
|
|
|
#define NTOSAPI
|
|
#include <ntdef.h>
|
|
#include <reactos/rossym.h>
|
|
#include "rossympriv.h"
|
|
|
|
VOID
|
|
RosSymDelete(PROSSYM_INFO RosSymInfo)
|
|
{
|
|
RosSymFreeMem(RosSymInfo);
|
|
}
|