23 lines
504 B
C
23 lines
504 B
C
/*
|
|
* Copyright (C) 2013 Apple Inc. All rights reserved.
|
|
*
|
|
* This document is the property of Apple Inc.
|
|
* It is considered confidential and proprietary.
|
|
*
|
|
* This document may not be reproduced or transmitted in any form,
|
|
* in whole or in part, without the express written permission of
|
|
* Apple Inc.
|
|
*/
|
|
#ifndef IPIPE_PROTOCOL_H
|
|
#define IPIPE_PROTOCOL_H
|
|
|
|
#if 0
|
|
#define IPIPE_CTL_PIPE (0)
|
|
#endif
|
|
|
|
#define IPIPE_ERR_FRAMING (2)
|
|
// XXX: remove this
|
|
#define IPIPE_ERR_TBD (0xffffffff)
|
|
|
|
#endif
|