reactos/rostests/apitests/ntdll/RtlGetLongestNtPathLength.c
Thomas Faber fb43dc26f7 [NTDLL_APITEST]
- Add test for RtlGetLongestNtPathLength
- Add test for RtlDetermineDosPathNameType_U (and RtlDetermineDosPathNameType_Ustr, if address is known)

svn path=/trunk/; revision=56411
2012-04-25 07:43:33 +00:00

25 lines
497 B
C

/*
* PROJECT: ReactOS api tests
* LICENSE: GPLv2+ - See COPYING in the top level directory
* PURPOSE: Test for RtlGetLongestNtPathLength
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
*/
#define WIN32_NO_STATUS
#include <wine/test.h>
#include <ndk/rtlfuncs.h>
/*
ULONG
NTAPI
RtlGetLongestNtPathLength(VOID);
*/
START_TEST(RtlGetLongestNtPathLength)
{
ULONG Length;
Length = RtlGetLongestNtPathLength();
ok(Length == 269, "Length = %lu\n", Length);
}