aboutsummaryrefslogtreecommitdiffstats
path: root/screen_search.c
blob: cb975a882160f4bfc08b7fb4774f1080301867ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <ncurses.h>

#include "libmpdclient.h"
#include "config.h"
#include "mpc.h"
#include "command.h"
#include "screen.h"
#include "screen_search.h"

void 
search_open(screen_t *screen, mpd_client_t *c)
{
}

void 
search_close(screen_t *screen, mpd_client_t *c)
{
}

void 
search_paint(screen_t *screen, mpd_client_t *c)
{
}

void 
search_update(screen_t *screen, mpd_client_t *c)
{
}

int 
search_cmd(screen_t *screen, mpd_client_t *c, command_t cmd)
{
  return 0;
}