mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
22 lines
455 B
C
22 lines
455 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Test for RtlGetLongestNtPathLength
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
/*
|
|
ULONG
|
|
NTAPI
|
|
RtlGetLongestNtPathLength(VOID);
|
|
*/
|
|
|
|
START_TEST(RtlGetLongestNtPathLength)
|
|
{
|
|
ULONG Length;
|
|
|
|
Length = RtlGetLongestNtPathLength();
|
|
ok(Length == 269, "Length = %lu\n", Length);
|
|
}
|