diff rtspcodes.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 22f6839eb478
children f6021da48f21
line wrap: on
line diff
--- a/rtspcodes.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/rtspcodes.h	Sun Jun 17 00:01:30 2007 +0000
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#ifndef AVFORMAT_RTSPCODES_H
+#define AVFORMAT_RTSPCODES_H
+
 /** RTSP handling */
 enum RTSPStatusCode {
 RTSP_STATUS_OK              =200, /**< OK */
@@ -34,3 +37,4 @@
 RTSP_STATUS_VERSION         =505, /**< RTSP Version not supported */
 };
 
+#endif