mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
23 lines
532 B
C
23 lines
532 B
C
/*
|
|
* PROJECT: ReactOS Windows-Compatible Session Manager
|
|
* LICENSE: BSD 2-Clause License
|
|
* FILE: base/system/smss/crashdmp.c
|
|
* PURPOSE: Main SMSS Code
|
|
* PROGRAMMERS: Alex Ionescu
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include "smss.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
BOOLEAN
|
|
NTAPI
|
|
SmpCheckForCrashDump(IN PUNICODE_STRING FileName)
|
|
{
|
|
return FALSE;
|
|
}
|