fresh git tree for public release

we regretfully had to remove our git history for licensing reasons

Signed-off-by: Casey Bodley <cbodley@citi.umich.edu>
This commit is contained in:
Casey Bodley 2010-10-11 14:59:26 -04:00
commit 0ad4db4fad
271 changed files with 71255 additions and 0 deletions

21
dll/sources Normal file
View file

@ -0,0 +1,21 @@
TARGETTYPE=DYNLINK
TARGETNAME=nfs41_np
SOURCES=dllmain.c nfs41_np.c options.c
UMTYPE=console
UNICODE=1
DLLBASE=0x1010000
USE_NTDLL=1
NET_C_DEFINES=-DUNICODE
INCLUDES=..\sys; \
$(DDK_INC_PATH);
TARGETLIBS=$(DDK_LIB_PATH)\user32.lib $(DDK_LIB_PATH)\kernel32.lib
DLLDEF=nfs41_np.def
!IF 0
/W3 is default level
bump to /Wall, but suppress warnings generated by system includes,
as well as the following warnings:
4100 - unused function call arguments (we have lots of stubs)
4127 - constant conditional (I like to use if(0) or if(1))
!ENDIF
MSC_WARNING_LEVEL=/Wall /wd4668 /wd4619 /wd4820 /wd4255 /wd4100 /wd4127 /wd4711