]> git.saurik.com Git - apple/security.git/blob - OSX/libsecurity_transform/lib/SecNullTransform.h
Security-57336.1.9.tar.gz
[apple/security.git] / OSX / libsecurity_transform / lib / SecNullTransform.h
1 #ifndef __SECNULLTRANSFORM__
2 #define __SECNULLTRANSFORM__
3
4
5 #ifdef COM_APPLE_SECURITY_ACTUALLY_BUILDING_LIBRARY
6 #include "SecTransform.h"
7 #else
8 #include <Security/SecTransform.h>
9 #endif
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 extern const CFStringRef kSecNullTransformName;
16
17 typedef CFTypeRef SecNullTransformRef;
18
19 SecNullTransformRef SecNullTransformCreate();
20
21 #ifdef __cplusplus
22 };
23 #endif
24
25 #endif