nfs_ea <filename> create <name> <value> nfs_ea <filename> set <name> [value] nfs_ea <filename> get <name> [name...] nfs_ea <filename> list Note that the test uses NtCreateFile(), so filenames must be specified in NT format: \??\z:\foo Signed-off-by: Casey Bodley <cbodley@citi.umich.edu>
17 lines
393 B
Text
17 lines
393 B
Text
TARGETTYPE=PROGRAM
|
|
TARGETNAME=nfs_ea
|
|
SOURCES=main.c
|
|
UMTYPE=console
|
|
USE_MSVCRT=1
|
|
TARGETLIBS=$(DDK_LIB_PATH)\ntdll.lib
|
|
INCLUDES=$(DDK_INC_PATH)
|
|
|
|
UMENTRY=wmain
|
|
UNICODE=1
|
|
C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE
|
|
|
|
!IF 0
|
|
/W3 is default level
|
|
bump to /Wall, but suppress warnings generated by system includes
|
|
!ENDIF
|
|
MSC_WARNING_LEVEL=/Wall /wd4668 /wd4619 /wd4820 /wd4255 /wd4711
|