reactos/rostests/apitests/ntdll/RtlGetLongestNtPathLength.c

26 lines
506 B
C
Raw Normal View History

/*
* 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 <apitest.h>
#define WIN32_NO_STATUS
#include <ndk/rtlfuncs.h>
/*
ULONG
NTAPI
RtlGetLongestNtPathLength(VOID);
*/
START_TEST(RtlGetLongestNtPathLength)
{
ULONG Length;
Length = RtlGetLongestNtPathLength();
ok(Length == 269, "Length = %lu\n", Length);
}