mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 01:18:00 +00:00
1b851758bd
My experimental build with clang-cl at -Wall did show up a few things that are safe enough to fix right now. One was this list of missing includes, which was causing a lot of -Wmissing-prototype warnings, and is a real risk because it means the declarations in headers weren't being type-checked against the actual function definitions. Happily, no actual mismatches.
11 lines
294 B
C
11 lines
294 B
C
/*
|
|
* no-jump-list.c: stub jump list functions for Windows executables
|
|
* that don't update the jump list.
|
|
*/
|
|
|
|
#include "putty.h"
|
|
|
|
void add_session_to_jumplist(const char * const sessionname) {}
|
|
void remove_session_from_jumplist(const char * const sessionname) {}
|
|
void clear_jumplist(void) {}
|