/** * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ #ifndef _POST_H_ #define _POST_H_ /* stdlib includes */ #include #include #include #include #define POST_MAIN_PAYLOAD_SIZE 3 #define POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET 0 #define POST_MAIN_PAYLOAD_DEVSN_OFFSET 1 #define POST_MAIN_PAYLOAD_STATUS_OFFSET 2 #endif /* _POST_H_ */