make: Global change: Move all public headers to include folder. Change source to including public headers using #include <ndn-cpp/*>. Split some header files to minimize exposing C .h files.
diff --git a/ndn-cpp/c/interest.h b/ndn-cpp/c/interest.h
index 69428ac..12ca38e 100644
--- a/ndn-cpp/c/interest.h
+++ b/ndn-cpp/c/interest.h
@@ -7,6 +7,7 @@
#ifndef NDN_INTEREST_H
#define NDN_INTEREST_H
+#include <ndn-cpp/c/interest-types.h>
#include "name.h"
#include "publisher-public-key-digest.h"
@@ -14,11 +15,6 @@
extern "C" {
#endif
-typedef enum {
- ndn_Exclude_COMPONENT = 0,
- ndn_Exclude_ANY = 1
-} ndn_ExcludeType;
-
/**
* An ndn_ExcludeEntry holds an ndn_ExcludeType, and if it is a COMPONENT, it holds a pointer to the component value.
*/