26 lines
434 B
C
26 lines
434 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_webbookmark();
|
|
void vene_inc_vol(const Arg*);
|
|
void vene_dec_vol(const Arg*);
|
|
void vene_toggle_vol(const Arg*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|