30 lines
569 B
C
30 lines
569 B
C
#pragma once
|
|
// Vene stuff used by dwm
|
|
|
|
// extern char* HOME;
|
|
extern char SCREEN_CAPS_DIR[64];
|
|
// extern char BOOKMARK_DIR[64];
|
|
// extern char OPEN_BOOKMARK_CMD[128];
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void vene_setup();
|
|
void vene_updatestatus(char status[]);
|
|
void vene_run();
|
|
|
|
void vene_screenshot(const Arg*);
|
|
void vene_clip_history(const Arg*);
|
|
void vene_browser(const Arg*);
|
|
void vene_webbookmark();
|
|
void vene_inc_vol(const Arg*);
|
|
void vene_dec_vol(const Arg*);
|
|
void vene_toggle_vol(const Arg*);
|
|
void vene_toggle_mic(const Arg*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|