~ubuntu-branches/ubuntu/lucid/ming/lucid

« back to all changes in this revision

Viewing changes to src/blocks/button.h

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-02-11 10:57:41 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100211105741-lzpmxc0703c4bo1w
Tags: 1:0.4.3-1ubuntu1
* Merge from Debian unstable (LP: #192664), remaining changes:
  - Python 2.6 transition:
    - debian/rules:
      + Include /usr/share/python/python.mk.
      + Add py_setup_install_args macro to setup.py install.
      + Installed modules differ between python versions and can't be shared,
        use DH_PYCENTRAL=nomove.
    - Remove unnecessary debian/python-ming.{dirs,files}, Python 2.3 is not
      supported anymore.
* debian/control: separate dependencies by commas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
/* button.h
21
21
 *
22
 
 * $Id: button.h,v 1.8 2003/11/08 18:24:57 whamann Exp $
 
22
 * $Id: button.h,v 1.10 2007/03/26 09:39:39 krechert Exp $
23
23
 * 
24
24
 * Notice: This header file contains declarations of functions and types that
25
25
 * are just used internally. All library functions and types that are supposed
30
30
#define SWF_BUTTON_H_INCLUDED
31
31
 
32
32
#include "ming.h"
33
 
 
 
33
#include "scalinggrid.h"
34
34
typedef struct SWFButtonSound_s *SWFButtonSound;
35
35
 
36
36
#define SWF_BUTTON_TRACKASMENU  (1<<0)
41
41
 
42
42
SWFSoundInstance SWFButtonSound_setSound(SWFButtonSound sounds, SWFSound sound, byte flags);
43
43
 
44
 
SWFButtonSound getButtonSound(SWFButton button);
45
 
 
46
44
#endif /* SWF_BUTTON_H_INCLUDED */