2012-04-25 07:43:33 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS api tests
|
|
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
|
|
* PURPOSE: Test for RtlGetLongestNtPathLength
|
2013-10-12 16:05:54 +00:00
|
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
2012-04-25 07:43:33 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-22 19:07:35 +00:00
|
|
|
#include <apitest.h>
|
|
|
|
|
2012-04-25 07:43:33 +00:00
|
|
|
#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);
|
|
|
|
}
|