mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
fb43dc26f7
- Add test for RtlGetLongestNtPathLength - Add test for RtlDetermineDosPathNameType_U (and RtlDetermineDosPathNameType_Ustr, if address is known) svn path=/trunk/; revision=56411
24 lines
497 B
C
24 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);
|
|
}
|