Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 1 | ;;; plugin-msg-enum-skel.el - vpp engine plug-in message enum skeleton |
| 2 | ;;; |
| 3 | ;;; Copyright (c) 2016 Cisco and/or its affiliates. |
| 4 | ;;; Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ;;; you may not use this file except in compliance with the License. |
| 6 | ;;; You may obtain a copy of the License at: |
| 7 | ;;; |
| 8 | ;;; http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ;;; |
| 10 | ;;; Unless required by applicable law or agreed to in writing, software |
| 11 | ;;; distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ;;; See the License for the specific language governing permissions and |
| 14 | ;;; limitations under the License. |
| 15 | |
| 16 | (require 'skeleton) |
| 17 | |
| 18 | (define-skeleton plugin-msg-enum-skel |
| 19 | "Insert a plug-in message enumeration skeleton " |
| 20 | nil |
| 21 | '(if (not (boundp 'plugin-name)) |
| 22 | (setq plugin-name (read-string "Plugin name: "))) |
| 23 | '(setq PLUGIN-NAME (upcase plugin-name)) |
| 24 | " |
| 25 | /* |
| 26 | * " plugin-name "_msg_enum.h - skeleton vpp engine plug-in message enumeration |
| 27 | * |
| 28 | * Copyright (c) <current-year> <your-organization> |
| 29 | * Licensed under the Apache License, Version 2.0 (the \"License\"); |
| 30 | * you may not use this file except in compliance with the License. |
| 31 | * You may obtain a copy of the License at: |
| 32 | * |
| 33 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 34 | * |
| 35 | * Unless required by applicable law or agreed to in writing, software |
| 36 | * distributed under the License is distributed on an \"AS IS\" BASIS, |
| 37 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 38 | * See the License for the specific language governing permissions and |
| 39 | * limitations under the License. |
| 40 | */ |
| 41 | #ifndef included_" plugin-name "_msg_enum_h |
| 42 | #define included_" plugin-name "_msg_enum_h |
| 43 | |
| 44 | #include <vppinfra/byte_order.h> |
| 45 | |
| 46 | #define vl_msg_id(n,h) n, |
| 47 | typedef enum { |
| 48 | #include <" plugin-name "/" plugin-name "_all_api_h.h> |
| 49 | /* We'll want to know how many messages IDs we need... */ |
| 50 | VL_MSG_FIRST_AVAILABLE, |
| 51 | } vl_msg_id_t; |
| 52 | #undef vl_msg_id |
| 53 | |
| 54 | #endif /* included_" plugin-name "_msg_enum_h */ |
| 55 | ") |