]> git.saurik.com Git - apple/security.git/blame - Security/libsecurity_transform/lib/SecNullTransform.h
Security-57031.1.35.tar.gz
[apple/security.git] / Security / libsecurity_transform / lib / SecNullTransform.h
CommitLineData
b1ab9ed8
A
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
12extern "C" {
13#endif
14
15extern const CFStringRef kSecNullTransformName;
16
17typedef CFTypeRef SecNullTransformRef;
18
19SecNullTransformRef SecNullTransformCreate();
20
21#ifdef __cplusplus
22};
23#endif
24
25#endif