-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TabBar: use struct Window instead of WINDOW*
- Loading branch information
1 parent
25980e9
commit eb73e5f
Showing
3 changed files
with
18 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
// Copyright The Music Player Daemon Project | ||
|
||
#ifndef NCMPC_TAB_BAR_HXX | ||
#define NCMPC_TAB_BAR_HXX | ||
|
||
#include <curses.h> | ||
#pragma once | ||
|
||
struct Window; | ||
struct PageMeta; | ||
|
||
void | ||
PaintTabBar(WINDOW *w, const PageMeta ¤t_page_meta, | ||
PaintTabBar(Window window, const PageMeta ¤t_page_meta, | ||
const char *current_page_title) noexcept; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters