/[winpt]/trunk/Include/wptW32API.h
ViewVC logotype

Diff of /trunk/Include/wptW32API.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 23 by twoaday, Fri Sep 30 10:10:16 2005 UTC revision 47 by werner, Mon Oct 31 14:04:59 2005 UTC
# Line 1  Line 1 
 /* wptW32API.h - Common API interface  
  *      Copyright (C) 2001-2005 Timo Schulz  
  *  
  * This file is part of WinPT.  
  *  
  * WinPT is free software; you can redistribute it and/or  
  * modify it under the terms of the GNU General Public License  
  * as published by the Free Software Foundation; either version 2  
  * of the License, or (at your option) any later version.  
  *    
  * WinPT is distributed in the hope that it will be useful,  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  
  * General Public License for more details.  
  *  
  * You should have received a copy of the GNU General Public License  
  * along with WinPT; if not, write to the Free Software Foundation,  
  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  
  */  
   
 #ifndef WPT_W32_API_H  
 #define WPT_W32_API_H  
   
 enum {  
     FILE_OPEN = 0,  
     FILE_SAVE = 1  
 };  
   
 enum {  
     WIPE_MODE_SIMPLE    = 0,  
     WIPE_MODE_DOD       = 1,  
     WIPE_MODE_GUTMANN   = 2,  
     WIPE_MODE_FAST      = 3,  
 };  
   
 #ifdef __cplusplus  
 extern "C" {  
 #endif  
   
 int gpg_md_hash_file (int mdalgo, const char *file, byte *digest, size_t *nlen);  
 int gpg_md_selftest (void);  
   
 #ifdef __cplusplus  
 }  
 #endif  
   
   
 struct reminder_ctx_s {  
     int msecs;  
 };  
   
 struct curr_wnd_ctx {  
     HWND main;  
     HWND focus;  
 };  
   
 struct LOCK {  
     char *file;  
     int size;  
     HANDLE fh;  
 };  
   
   
 /*-- mapi --*/  
 int mapi_init (void);  
 int mapi_send_pubkey (const char * keyid, char * keyfile);  
 int mapi_send_ascfile (char * ascfile);  
 void mapi_deinit (void);  
   
 char* make_filename( const char *path, const char *file, const char *ext );  
 int init_file_lock( LOCK *ctx, const char *file );  
 void release_file_lock( LOCK *ctx );  
 int file_exist_check( const char *fname );  
 int dir_exist_check( const char *dir );  
 size_t get_file_size( const char *fname );  
   
 int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey );  
 int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );  
   
 void center_window (HWND hwndChild, HWND hwndParent);  
 void center_window2 (HWND hwndChild, HWND parent, HWND style);  
 HANDLE window_reminder (struct reminder_ctx_s * ctx);  
 void set_active_window (HWND dlg);  
 void reset_active_window (void);  
   
 void set_menu_text( HMENU menu, int m_uid, const char *text );  
 void set_menu_state( HMENU menu, int m_uid, int state );  
 char* get_clip_text( HWND hwnd );  
 int set_clip_text (HWND hwnd, const char *text, int nbytes);  
 int set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer);  
 int dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,  
                      LPARAM param, LPCTSTR title, int title_id );  
 int msg_box( HWND hwnd, const char *text, const char *title, int mode );  
 int check_date( SYSTEMTIME *st );  
 const char * get_filename_dlg( HWND hwnd, int id, const char * title,  
                                const char * filter, const char * name );  
 const char * get_folder_dlg( HWND hwnd, const char * title, const char * name );  
 char * m_strdup( const char *str );  
 const char * strtimestamp (long timestamp);  
   
 int rename_unlink (const char *path);  
 int secure_unlink (const char *path, const int mode);  
 void secure_unlink_set_cb (void (*cb)(void *, const char *, int, int, int),  
                            void *cb_value);  
 int wipe_freespace (const char * drive, HANDLE *r_fd,  
                     void (*cb)(void *, unsigned __int64, unsigned __int64),  
                     void * cb_value);  
   
 #define listbox_add_string(lb, string) \  
     SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )  
   
 #define listbox_get_cursel(lb) \  
     SendMessage( (lb), LB_GETCURSEL, 0, 0 )  
   
 #define combox_add_string(cb, string) \  
     SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )  
   
 #define item_get_text_length(dlg, itm) \  
         SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0)  
   
 #endif /* WPT_W32_API_H */  
1    /* wptW32API.h - Common API interface
2     *      Copyright (C) 2001-2005 Timo Schulz
3     *
4     * This file is part of WinPT.
5     *
6     * WinPT is free software; you can redistribute it and/or
7     * modify it under the terms of the GNU General Public License
8     * as published by the Free Software Foundation; either version 2
9     * of the License, or (at your option) any later version.
10     *  
11     * WinPT is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14     * General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with WinPT; if not, write to the Free Software Foundation,
18     * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19     */
20    
21    #ifndef WPT_W32_API_H
22    #define WPT_W32_API_H
23    
24    /* #include "wptCrypto.h" */
25    #include "wptUtil.h"
26    
27    #ifndef FILE_OPEN
28    #define FILE_OPEN 0
29    #endif
30    #ifndef FILE_SAVE
31    #define FILE_SAVE 1
32    #endif
33    
34    struct reminder_ctx_s {
35        int msecs;
36    };
37    
38    struct curr_wnd_ctx {
39        HWND main;
40        HWND focus;
41    };
42    
43    struct LOCK {
44        char *file;
45        int size;
46        HANDLE fh;
47    };
48    
49    
50    /*-- wptMAPI.cpp --*/
51    int mapi_init (void);
52    int mapi_send_pubkey (const char * keyid, char * keyfile);
53    int mapi_send_ascfile (char * ascfile);
54    void mapi_deinit (void);
55    
56    /*-- wptW32API.cpp --*/
57    char* make_filename( const char *path, const char *file, const char *ext );
58    int init_file_lock( LOCK *ctx, const char *file );
59    void release_file_lock( LOCK *ctx );
60    int file_exist_check( const char *fname );
61    int dir_exist_check( const char *dir );
62    size_t get_file_size( const char *fname );
63    
64    int get_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx, int *r_hotkey );
65    int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );
66    
67    void center_window (HWND hwndChild, HWND hwndParent);
68    void center_window2 (HWND hwndChild, HWND parent, HWND style);
69    HANDLE window_reminder (struct reminder_ctx_s * ctx);
70    void set_active_window (HWND dlg);
71    void reset_active_window (void);
72    
73    void set_menu_text (HMENU menu, int m_uid, const char *text);
74    void set_menu_text_bypos (HMENU menu, int pos, const char *text);
75    void set_menu_state (HMENU menu, int m_uid, int state);
76    
77    char* get_clip_text (HWND hwnd);
78    int set_clip_text (HWND hwnd, const char *text, int nbytes);
79    int set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer);
80    int dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,
81                         LPARAM param, LPCTSTR title, int title_id );
82    int msg_box( HWND hwnd, const char *text, const char *title, int mode );
83    int check_date( SYSTEMTIME *st );
84    const char * get_filename_dlg( HWND hwnd, int id, const char * title,
85                                   const char * filter, const char * name );
86    const char* get_filesave_dlg (HWND hwnd, const char *title,
87                                  const char *filter, const char *name);
88    const char* get_fileopen_dlg (HWND hwnd, const char *title,
89                                  const char *filter, const char *name);
90    const char * get_folder_dlg( HWND hwnd, const char * title, const char * name );
91    char * m_strdup( const char *str );
92    const char * strtimestamp (long timestamp);
93    
94    
95    #define listbox_add_string(lb, string) \
96        SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
97    
98    #define listbox_get_cursel(lb) \
99        SendMessage( (lb), LB_GETCURSEL, 0, 0 )
100    
101    #define combox_add_string(cb, string) \
102        SendMessage( (cb), CB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
103    
104    #define item_get_text_length(dlg, itm) \
105            SendDlgItemMessage ((dlg), (itm), WM_GETTEXTLENGTH, 0, 0)
106    
107    #endif /* WPT_W32_API_H */

Legend:
Removed from v.23  
changed lines
  Added in v.47

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26