this repo has no description
at fixPythonPipStalling 18 lines 538 B view raw
1#ifndef _ACMLIB_H_ 2#define _ACMLIB_H_ 3 4#include <ACMAclDefs.h> 5#include <ACMDefs.h> 6 7// CF type 8typedef void* ACMContextRef; 9 10typedef int ACMStatus; 11typedef char* ACMPassphrasePurpose; 12typedef char* ACMScope; 13 14ACMContextRef ACMContextCreateWithExternalForm(const void *externalForm, size_t dataLength); 15ACMStatus ACMContextDelete(ACMContextRef context, bool destroyContext); 16ACMStatus ACMContextRemovePassphraseCredentialsByPurposeAndScope(const ACMContextRef context, ACMPassphrasePurpose purpose, ACMScope scope); 17 18#endif // _ACMLIB_H_