Add CX prefix to Cursor and move a comment.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80359 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 426223f..52ffb93 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -41,12 +41,12 @@
 
 // Cursors represent declarations and references (provides line/column info).
 enum CXCursorKind {  
- Cursor_Declaration,
- Cursor_Reference,
- Cursor_ObjC_ClassRef,
- Cursor_ObjC_ProtocolRef,
- Cursor_ObjC_MessageRef,
- Cursor_ObjC_SelectorRef
+ CXCursor_Declaration,
+ CXCursor_Reference,
+ CXCursor_ObjC_ClassRef,
+ CXCursor_ObjC_ProtocolRef,
+ CXCursor_ObjC_MessageRef,
+ CXCursor_ObjC_SelectorRef
 };
 
 typedef void *CXDecl;    // A specific declaration within a translation unit.