24 |
/* #include "wptCrypto.h" */ |
/* #include "wptCrypto.h" */ |
25 |
#include "wptUtil.h" |
#include "wptUtil.h" |
26 |
|
|
|
#ifndef FILE_OPEN |
|
|
#define FILE_OPEN 0 |
|
|
#endif |
|
|
#ifndef FILE_SAVE |
|
|
#define FILE_SAVE 1 |
|
|
#endif |
|
|
|
|
27 |
struct reminder_ctx_s { |
struct reminder_ctx_s { |
28 |
int msecs; |
int msecs; |
29 |
}; |
}; |
47 |
void mapi_deinit (void); |
void mapi_deinit (void); |
48 |
|
|
49 |
/*-- wptW32API.cpp --*/ |
/*-- wptW32API.cpp --*/ |
50 |
char* make_filename( const char *path, const char *file, const char *ext ); |
char* make_filename (const char *path, const char *file, const char *ext); |
51 |
int init_file_lock( LOCK *ctx, const char *file ); |
int init_file_lock (LOCK *ctx, const char *file); |
52 |
void release_file_lock( LOCK *ctx ); |
void release_file_lock (LOCK *ctx); |
53 |
int file_exist_check( const char *fname ); |
int file_exist_check (const char *fname); |
54 |
int dir_exist_check( const char *dir ); |
int dir_exist_check (const char *dir); |
55 |
size_t get_file_size( const char *fname ); |
DWORD get_file_size (const char *fname); |
56 |
|
|
57 |
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 ); |
58 |
int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx ); |
int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx ); |
74 |
LPARAM param, LPCTSTR title, int title_id ); |
LPARAM param, LPCTSTR title, int title_id ); |
75 |
int msg_box( HWND hwnd, const char *text, const char *title, int mode ); |
int msg_box( HWND hwnd, const char *text, const char *title, int mode ); |
76 |
int check_date( SYSTEMTIME *st ); |
int check_date( SYSTEMTIME *st ); |
|
const char * get_filename_dlg( HWND hwnd, int id, const char * title, |
|
|
const char * filter, const char * name ); |
|
77 |
const char* get_filesave_dlg (HWND hwnd, const char *title, |
const char* get_filesave_dlg (HWND hwnd, const char *title, |
78 |
const char *filter, const char *name); |
const char *filter, const char *name); |
79 |
const char* get_fileopen_dlg (HWND hwnd, const char *title, |
const char* get_fileopen_dlg (HWND hwnd, const char *title, |