mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
3c7c94a174
- Consistent email address is consistent. svn path=/trunk/; revision=60631
25 lines
506 B
C
25 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);
|
|
}
|