xref: /openbsd/usr.bin/tmux/notify.c (revision cca36db2)
1 /* $OpenBSD: notify.c,v 1.1 2012/03/17 22:35:09 nicm Exp $ */
2 
3 /*
4  * Copyright (c) 2012 George Nachman <tmux@georgester.com>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 #include "tmux.h"
20 
21 void
22 notify_window_layout_changed(unused struct window *w)
23 {
24 }
25 
26 void
27 notify_window_unlinked(unused struct session *s, unused struct window *w)
28 {
29 }
30 
31 void
32 notify_window_linked(unused struct session *s, unused struct window *w)
33 {
34 }
35 
36 void
37 notify_window_renamed(unused struct window *w)
38 {
39 }
40 
41 void
42 notify_attached_session_changed(unused struct client *c)
43 {
44 }
45 
46 void
47 notify_session_renamed(unused struct session *s)
48 {
49 }
50 
51 void
52 notify_session_created(unused struct session *s)
53 {
54 }
55 
56 void
57 notify_session_closed(unused struct session *s)
58 {
59 }
60