From 2f4e3d7ad43a9db29261d183070f3e92495b9fe1 Mon Sep 17 00:00:00 2001 From: Tomas Mlcoch Date: Thu, 12 Jan 2012 10:26:29 +0100 Subject: [PATCH] Add constants.h --- constants.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 constants.h diff --git a/constants.h b/constants.h new file mode 100644 index 0000000..1763289 --- /dev/null +++ b/constants.h @@ -0,0 +1,10 @@ +#ifndef __CONSTANTS__ +#define __CONSTANTS__ + +typedef enum { + PKG_CHECKSUM_MD5, + PKG_CHECKSUM_SHA1, + PKG_CHECKSUM_SHA256 +} ChecksumType; + +#endif /* __CONSTANTS__ */ -- 2.7.4