diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-15 17:01:05 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-15 17:01:05 +0000 |
commit | 6d6e19632737459dd61f9414da1c12fafc3016ed (patch) | |
tree | 6e700bc5f325be752c7f2c92fe1410b123ae4c54 | |
parent | f4f9d6d1e3cec07b431742a385dca38927210691 (diff) | |
download | fetchmail-6d6e19632737459dd61f9414da1c12fafc3016ed.tar.gz fetchmail-6d6e19632737459dd61f9414da1c12fafc3016ed.tar.bz2 fetchmail-6d6e19632737459dd61f9414da1c12fafc3016ed.zip |
Add smbtypes.h.
svn path=/branches/BRANCH_6-3/; revision=4742
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | smbtypes.h | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 438d277f..2a7b3401 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,7 +38,8 @@ noinst_LIBRARIES= libfm.a libfm_a_SOURCES= xmalloc.c base64.c rfc822.c report.c rfc2047e.c \ servport.c ntlm.h smbbyteorder.h smbdes.h smbmd4.h \ smbencrypt.h smbdes.c smbencrypt.c smbmd4.c smbutil.c \ - libesmtp/gethostbyname.h libesmtp/gethostbyname.c + libesmtp/gethostbyname.h libesmtp/gethostbyname.c \ + smbtypes.h libfm_a_LIBADD= $(EXTRAOBJ) libfm_a_DEPENDENCIES= $(EXTRAOBJ) LDADD = libfm.a @LIBINTL@ $(LIBOBJS) diff --git a/smbtypes.h b/smbtypes.h new file mode 100644 index 00000000..bdc26029 --- /dev/null +++ b/smbtypes.h @@ -0,0 +1,8 @@ +#ifndef SMBTYPES_H +#define SMBTYPES_H + +typedef unsigned short uint16; +typedef unsigned int uint32; +typedef unsigned char uint8; + +#endif |