/[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 116 by werner, Wed Dec 7 17:06:29 2005 UTC revision 205 by twoaday, Thu Apr 27 12:46:03 2006 UTC
# Line 1  Line 1 
1  /* wptW32API.h - Common API interface  /* wptW32API.h - Common API interface
2   *      Copyright (C) 2001-2005 Timo Schulz   *      Copyright (C) 2001-2006 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
# Line 21  Line 21 
21  #ifndef WPT_W32_API_H  #ifndef WPT_W32_API_H
22  #define WPT_W32_API_H  #define WPT_W32_API_H
23    
24  /*#include "wptCrypto.h"*/  /* Macros to change the cursor */
25  #include "wptUtil.h"  #define op_begin()  SetCursor (LoadCursor (NULL, IDC_WAIT))
26    #define op_end()    SetCursor (LoadCursor (NULL, IDC_ARROW))
27    
28  struct reminder_ctx_s {  #include "wptCrypto.h"
29      int msecs;  #include "wptUtil.h"
 };  
30    
31  struct curr_wnd_ctx {  struct curr_wnd_ctx {
32      HWND main;      HWND main;
33      HWND focus;      HWND focus;
34  };  };
35    
 struct LOCK {  
     char *file;  
     int size;  
     HANDLE fh;  
 };  
   
   
36  /*-- wptMAPI.cpp --*/  /*-- wptMAPI.cpp --*/
37  int mapi_init (void);  int mapi_init (void);
38  int mapi_send_pubkey (const char * keyid, char * keyfile);  int mapi_send_pubkey (const char *keyid, char *keyfile);
39  int mapi_send_ascfile (char * ascfile);  int mapi_send_ascfile (char *ascfile);
40  void mapi_deinit (void);  void mapi_deinit (void);
41    
42    /*-- wptSafeEditCtrl.cpp --*/
43    UINT SafeGetDlgItemText (HWND dlg, int id, char *buf, int buflen);
44    void safe_edit_control_init (HWND dlg, int ctlid);
45    void safe_edit_control_free (HWND dlg, int ctlid);
46    
47  /*-- wptW32API.cpp --*/  /*-- wptW32API.cpp --*/
48  char* make_filename (const char *path, const char *file, const char *ext);  char* make_filename (const char *path, const char *file, const char *ext);
49  int init_file_lock (LOCK *ctx, const char *file);  char* make_special_filename (int folder, const char *file, const char *ext);
 void release_file_lock (LOCK *ctx);  
50  int file_exist_check (const char *fname);  int file_exist_check (const char *fname);
51  int dir_exist_check (const char *dir);  int dir_exist_check (const char *dir);
52  DWORD get_file_size (const char *fname);  DWORD get_file_size (const char *fname);
53    int get_file_version (const char *fname, WORD *major, WORD *minor,
54                          WORD *patch1, WORD *patch2);
55    
56  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  int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );  int set_window_contents( HWND old_hwnd, curr_wnd_ctx *ctx );
58    
59  void center_window (HWND hwndChild, HWND hwndParent);  void center_window (HWND hwndChild, HWND hwndParent);
60  void center_window2 (HWND hwndChild, HWND parent, HWND style);  void center_window2 (HWND hwndChild, HWND parent, HWND style);
61  HANDLE window_reminder (struct reminder_ctx_s * ctx);  void force_foreground_window (HWND dlg, int msecs);
62  void set_active_window (HWND dlg);  
63  void reset_active_window (void);  void insert_menu_item (HMENU hm, int by_pos, UINT m_id, const char *text);
64    void set_menu_text (HMENU menu, UINT m_uid, const char *text);
65  void set_menu_text (HMENU menu, int m_uid, const char *text);  void set_menu_text_bypos (HMENU menu, UINT pos, const char *text);
66  void set_menu_text_bypos (HMENU menu, int pos, const char *text);  void set_menu_state (HMENU menu, UINT m_uid, UINT state);
67  void set_menu_state (HMENU menu, int m_uid, int state);  UINT get_menu_state (HMENU menu, UINT m_uid);
68    
69  char* get_clip_text (HWND hwnd);  char* get_clip_text (HWND hwnd);
70  int set_clip_text (HWND hwnd, const char *text, int nbytes);  int set_clip_text (HWND hwnd, const char *text, int nbytes);
# Line 79  const char* get_filesave_dlg (HWND hwnd, Line 78  const char* get_filesave_dlg (HWND hwnd,
78  const char* get_fileopen_dlg (HWND hwnd, const char *title,  const char* get_fileopen_dlg (HWND hwnd, const char *title,
79                                const char *filter, const char *name);                                const char *filter, const char *name);
80  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 );
81  char * m_strdup( const char *str );  char * m_strdup (const char *str);
82  const char * strtimestamp (long timestamp);  const char * strtimestamp (long timestamp);
83    const char* get_locale_date (long tm_t, char *buf, DWORD buflen);
84    int get_temp_name (char *buf, DWORD buflen, const char *name);
85    
86    int GetDlgItemText_utf8 (HWND dlg, int id, char **r_txt);
87    
88  #define listbox_add_string(lb, string) \  #define listbox_add_string(lb, string) \
89      SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )      SendMessage( (lb), LB_ADDSTRING, 0, (LPARAM)(LPCSTR)(string) )
# Line 98  const char * strtimestamp (long timestam Line 100  const char * strtimestamp (long timestam
100  #ifdef _MSC_VER  #ifdef _MSC_VER
101  #include <htmlhelp.h>  #include <htmlhelp.h>
102    
 /* Support for the new html context sentensive help. For  
    now it can be only used with native W32 compilers. */  
103  #define html_help_init(cookie) \  #define html_help_init(cookie) \
104      HtmlHelp (NULL, NULL, HH_INITIALIZE, (DWORD)(cookie))      HtmlHelp (NULL, NULL, HH_INITIALIZE, (DWORD)(cookie))
105    
106  #define html_help_deinit() \  #define html_help_deinit(cookie) \
107      HtmlHelp (NULL, NULL, HH_UNINITIALIZE, 0)      HtmlHelp (NULL, NULL, HH_UNINITIALIZE, (DWORD)(cookie))
108    
109  #define html_help_dispatch(param, file, helparr) do { \  #define html_help_dispatch(param, file, helparr) do { \
110      HELPINFO *inf; \      HELPINFO *inf; \
# Line 114  const char * strtimestamp (long timestam Line 114  const char * strtimestamp (long timestam
114                     HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \                     HH_TP_HELP_CONTEXTMENU, (DWORD)helparr); \
115      } while (0)      } while (0)
116  #else  #else
117  #define html_help_init(cookie) do { } while (0)  #define html_help_init(cookie) do {} while (0)
118  #define html_help_deinit() do { } while (0)  #define html_help_deinit(cookie) do { (cookie) = 0; } while (0)
119  #define html_help_dispatch(param, file, helparr) do { } while (0)  #define html_help_dispatch(param, file, helparr) do {} while (0)
120  #endif  #endif
121    
122  #endif /* WPT_W32_API_H */  #endif /* WPT_W32_API_H */

Legend:
Removed from v.116  
changed lines
  Added in v.205

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26