24 |
#include "wptCrypto.h" |
#include "wptCrypto.h" |
25 |
#include "wptUtil.h" |
#include "wptUtil.h" |
26 |
|
|
|
struct reminder_ctx_s { |
|
|
int msecs; |
|
|
}; |
|
|
|
|
27 |
struct curr_wnd_ctx { |
struct curr_wnd_ctx { |
28 |
HWND main; |
HWND main; |
29 |
HWND focus; |
HWND focus; |
49 |
int file_exist_check (const char *fname); |
int file_exist_check (const char *fname); |
50 |
int dir_exist_check (const char *dir); |
int dir_exist_check (const char *dir); |
51 |
DWORD get_file_size (const char *fname); |
DWORD get_file_size (const char *fname); |
52 |
int get_file_version (const char *fname, WORD *major, WORD *minor, |
int get_file_version (const char *fname, WORD *major, WORD *minor, |
53 |
WORD *patch1, WORD *patch2); |
WORD *patch1, WORD *patch2); |
54 |
|
|
55 |
int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey ); |
int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey ); |
57 |
|
|
58 |
void center_window (HWND hwndChild, HWND hwndParent); |
void center_window (HWND hwndChild, HWND hwndParent); |
59 |
void center_window2 (HWND hwndChild, HWND parent, HWND style); |
void center_window2 (HWND hwndChild, HWND parent, HWND style); |
60 |
HANDLE window_reminder (struct reminder_ctx_s * ctx); |
void force_foreground_window (HWND dlg, int msecs); |
61 |
void set_active_window (HWND dlg); |
|
62 |
void reset_active_window (void); |
void set_menu_text (HMENU menu, UINT m_uid, const char *text); |
63 |
|
void set_menu_text_bypos (HMENU menu, UINT pos, const char *text); |
64 |
void set_menu_text (HMENU menu, int m_uid, const char *text); |
void set_menu_state (HMENU menu, UINT m_uid, UINT state); |
65 |
void set_menu_text_bypos (HMENU menu, int pos, const char *text); |
UINT get_menu_state (HMENU menu, UINT m_uid); |
|
void set_menu_state (HMENU menu, int m_uid, int state); |
|
66 |
|
|
67 |
char* get_clip_text (HWND hwnd); |
char* get_clip_text (HWND hwnd); |
68 |
int set_clip_text (HWND hwnd, const char *text, int nbytes); |
int set_clip_text (HWND hwnd, const char *text, int nbytes); |
76 |
const char* get_fileopen_dlg (HWND hwnd, const char *title, |
const char* get_fileopen_dlg (HWND hwnd, const char *title, |
77 |
const char *filter, const char *name); |
const char *filter, const char *name); |
78 |
const char * get_folder_dlg( HWND hwnd, const char * title, const char * name ); |
const char * get_folder_dlg( HWND hwnd, const char * title, const char * name ); |
79 |
char * m_strdup( const char *str ); |
char * m_strdup (const char *str); |
80 |
const char * strtimestamp (long timestamp); |
const char * strtimestamp (long timestamp); |
81 |
|
const char* get_locale_date (long tm_t, char *buf, DWORD buflen); |
82 |
|
|
83 |
|
|
84 |
#define listbox_add_string(lb, string) \ |
#define listbox_add_string(lb, string) \ |
112 |
HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \ |
HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \ |
113 |
} while (0) |
} while (0) |
114 |
#else |
#else |
115 |
#define html_help_init(cookie) do { } while (0) |
#define html_help_init(cookie) do {} while (0) |
116 |
#define html_help_deinit() do { } while (0) |
#define html_help_deinit() do {} while (0) |
117 |
#define html_help_dispatch(param, file, helparr) do { } while (0) |
#define html_help_dispatch(param, file, helparr) do {} while (0) |
118 |
#endif |
#endif |
119 |
|
|
120 |
#endif /* WPT_W32_API_H */ |
#endif /* WPT_W32_API_H */ |