src/transparency_gui.h
author rubidium
Thu, 17 Jul 2008 13:47:04 +0000
changeset 9648 c79160082c0f
parent 9111 48ce04029fe4
permissions -rw-r--r--
(svn r13715) -Fix [FS#2129]: C-like strings had to be rebound each time they were printed, otherwise the text could change due to the few number of slots that could be used to bind.
-Codechange: remove all BindCString and related functions and replace it by RAW_STRING which prints the C-string raw pointer that is on the 'print stack'.
6428
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     1
/* $Id$ */
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     2
9111
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 6428
diff changeset
     3
/** @file transparency_gui.h GUI functions related to transparency. */
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 6428
diff changeset
     4
6428
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     5
#ifndef TRANSPARENCY_GUI_H
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     6
#define TRANSPARENCY_GUI_H
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     7
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     8
void ShowTransparencyToolbar();
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
     9
cfa5f3428d97 (svn r9564) -Fix (r9563): When adding files remember to add them...
peter1138
parents:
diff changeset
    10
#endif /* TRANSPARENCY_GUI_H */