summaryrefslogtreecommitdiff
path: root/src/xine-engine/post.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2004-12-20 21:22:18 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2004-12-20 21:22:18 +0000
commitb32478f237d5e590e4714ee52ab5ce96206bae05 (patch)
tree0554bd8f1a3d08dcfe2f5339a75a8b7f4e5472ad /src/xine-engine/post.h
parent2bd4eed87540e5cd507d29cb446977736880cd15 (diff)
downloadxine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.gz
xine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.bz2
remove all local names beginning with double underscore, because C99
reserves these names for use by the C implementation CVS patchset: 7288 CVS date: 2004/12/20 21:22:18
Diffstat (limited to 'src/xine-engine/post.h')
-rw-r--r--src/xine-engine/post.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xine-engine/post.h b/src/xine-engine/post.h
index d30539c60..40627c9a6 100644
--- a/src/xine-engine/post.h
+++ b/src/xine-engine/post.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: post.h,v 1.21 2004/05/29 14:45:25 mroi Exp $
+ * $Id: post.h,v 1.22 2004/12/20 21:22:21 mroi Exp $
*
* post plugin definitions
*
@@ -375,19 +375,19 @@ do { \
/* macros to create parameter descriptors */
#define START_PARAM_DESCR( param_t ) \
-static param_t __temp_s; \
-static xine_post_api_parameter_t __temp_p[] = {
+static param_t temp_s; \
+static xine_post_api_parameter_t temp_p[] = {
#define PARAM_ITEM( param_type, var, enumv, min, max, readonly, descr ) \
-{ param_type, #var, sizeof(__temp_s.var), \
- (char *)&__temp_s.var-(char *)&__temp_s, enumv, min, max, readonly, descr },
+{ param_type, #var, sizeof(temp_s.var), \
+ (char *)&temp_s.var-(char *)&temp_s, enumv, min, max, readonly, descr },
#define END_PARAM_DESCR( name ) \
{ POST_PARAM_TYPE_LAST, NULL, 0, 0, NULL, 0, 0, 1, NULL } \
}; \
static xine_post_api_descr_t name = { \
- sizeof( __temp_s ), \
- __temp_p \
+ sizeof( temp_s ), \
+ temp_p \
};
#endif