~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to kscd/libwm/include/wm_helpers.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef WM_HELPERS_H
2
2
#define WM_HELPERS_H
3
3
/*
4
 
 * $Id: wm_helpers.h,v 1.3 2000/08/23 05:31:58 waba Exp $
 
4
 * $Id: wm_helpers.h,v 1.5 2004/02/22 03:44:55 mueller Exp $
5
5
 *
6
6
 * This file is part of WorkMan, the civilized CD player library
7
7
 * (c) 1991-1997 by Steven Grimm (original author)
86
86
#endif /* linux */
87
87
 
88
88
void            freeup( char **x );
89
 
void            wm_strmcat( char **t, char *s);
90
 
void            wm_strmcpy( char **t, char *s );
 
89
void            wm_strmcat( char **t, const char *s);
 
90
void            wm_strmcpy( char **t, const char *s );
91
91
char *          wm_strdup( char *s );
92
92
/* Somebody's version query unsatisfied? */
93
93
int             wm_libver_major( void );        /* return major internal version number */
99
99
char *          wm_libver_date( void );         /* returns string: date of compilation */
100
100
void            wm_lib_set_verbosity( int level ); /* set verbosity level */
101
101
int             wm_lib_get_verbosity( void );      /* get verbosity level */
102
 
void            wm_lib_message( unsigned int level, char *format, ... ); /* put out a message on stderr */
 
102
void            wm_lib_message( unsigned int level, const char *format, ... )
 
103
#ifdef __GNUC__
 
104
    __attribute__ ((format(printf,2,3)))
 
105
#endif
 
106
    ; /* put out a message on stderr */
103
107
int             wm_susleep( int usec );
104
108
 
105
109
#endif /* WM_HELPERS_H */