reactos/rostests/apitests/ntdll/RtlGetLongestNtPathLength.c
Thomas Faber 3c7c94a174 [COMMENTS]
- Consistent email address is consistent.

svn path=/trunk/; revision=60631
2013-10-12 16:05:54 +00:00

26 lines
506 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 <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);
}