]> git.saurik.com Git - apple/security.git/blobdiff - utilities/src/SecXPCError.h
Security-57031.1.35.tar.gz
[apple/security.git] / utilities / src / SecXPCError.h
diff --git a/utilities/src/SecXPCError.h b/utilities/src/SecXPCError.h
deleted file mode 100644 (file)
index 0a5896b..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-//  SecXPCError.h
-//  utilities
-//
-//  Created by John Hurley on 5/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
-//
-
-#ifndef _UTILITIES_SECXPCERROR_H_
-#define _UTILITIES_SECXPCERROR_H_
-
-#include <CoreFoundation/CFString.h>
-#include <CoreFoundation/CFError.h>
-#include <xpc/xpc.h>
-
-__BEGIN_DECLS
-
-extern CFStringRef sSecXPCErrorDomain;
-
-enum {
-    kSecXPCErrorSuccess = 0,
-    kSecXPCErrorUnexpectedType = 1,
-    kSecXPCErrorUnexpectedNull = 2,
-    kSecXPCErrorConnectionFailed = 3,
-    kSecXPCErrorUnknown = 4,
-};
-
-CFErrorRef SecCreateCFErrorWithXPCObject(xpc_object_t xpc_error);
-xpc_object_t SecCreateXPCObjectWithCFError(CFErrorRef error);
-
-__END_DECLS
-
-#endif /* UTILITIES_SECXPCERROR_H */