File: win32utils.h

package info (click to toggle)
grisbi 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 28,808 kB
  • sloc: ansic: 161,477; sh: 4,559; makefile: 918; xml: 580; perl: 370
file content (134 lines) | stat: -rw-r--r-- 6,207 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* ************************************************************************** */
/* quelques fonction donnant acces aux API windows                            */
/*                                                                            */
/*                                win32util.h                                 */
/*                                                                            */
/*     Copyright (C) 2004-     Francois Terrot (francois.terrot@grisbi.org)   */
/* 			http://www.grisbi.org				      */
/*                                                                            */
/*  This program 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.                                       */
/*                                                                            */
/*  This program 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 this program; if not, write to the Free Software               */
/*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
/*                                                                            */
/* ************************************************************************** */

#ifndef WINUTILS_H_C61461B7_ACF2_4011_888A_030AD5F25F8F
#define WINUTILS_H_C61461B7_ACF2_4011_888A_030AD5F25F8F

#include <windows.h>
#include <glib.h>

// -------------------------------------------------------------------------
// Windows(c) Usefull Functions                                       PART_1 
// -------------------------------------------------------------------------
extern gchar* win32_get_error_string(const guint win_error);
extern void   win32_set_last_error(guint);
extern guint  win32_get_last_error();

// -------------------------------------------------------------------------
// Windows(c) Special Paths ...                                       PART_2
// --------------------------------------------------------------------------
//! \def defined CSIDL_FLAG_CREATE if needed
#ifndef CSIDL_FLAG_CREATE
#define CSIDL_FLAG_CREATE 0x8000
#endif

typedef HRESULT (__stdcall * PFNSHGETFOLDERPATHA)(HWND, int, HANDLE, DWORD, LPSTR);  // "SHGetFolderPathA"
typedef HRESULT (__stdcall * PFNSHGETFOLDERPATHW)(HWND, int, HANDLE, DWORD, LPWSTR); // "SHGetFolderPathW"

#ifdef UNICODE
#define SHGetFolderPath     SHGetFolderPathW
#define SZ_SHGETFOLDERPATH  "SHGetFolderPathW"
#define PFNSHGETFOLDERPATH  PFNSHGETFOLDERPATHW
#else
#define SHGetFolderPath     SHGetFolderPathA
#define SZ_SHGETFOLDERPATH  "SHGetFolderPathA"
#define PFNSHGETFOLDERPATH  PFNSHGETFOLDERPATHA
#endif

extern HRESULT win32_get_app_data_folder_path     (gchar*, int);
extern gchar*  win32_get_my_documents_folder_path (void);
extern gchar*  win32_get_windows_folder_path      (void);
extern gchar*  win32_get_grisbirc_folder_path     (void);
extern void    win32_set_app_path                 (gchar*);
extern gchar*  win32_app_subdir_folder_path       (gchar*);
extern gchar*  win32_get_tmp_dir                  ();
extern void    win32_parse_gtkrc                  (const gchar* basename);

#define PIXMAPS_DIR win32_app_subdir_folder_path("pixmaps")  /* pixmaps */
#define HELP_PATH   win32_app_subdir_folder_path("help")     /* help */
#define LOCALEDIR   win32_app_subdir_folder_path("lib/locale")   /* locale */
#define LOGO_PATH   win32_app_subdir_folder_path("pixmaps/grisbi-logo.png")
#define DATA_PATH   win32_app_subdir_folder_path("help/tips")
#define PLUGINS_DIR win32_app_subdir_folder_path("plugins")
#define UI_DIR      win32_app_subdir_folder_path("share/ui")

// -------------------------------------------------------------------------
// Windows(c) Version ID and Technology                               PART_3 
//      Version ID is 95/98/NT/2K/...
//      Technology is 3.1/9x/NT/...
// -------------------------------------------------------------------------
// even values are supported values
// odd are not supported values
typedef enum
{
    WIN_UNKNOWN = 0x00,
    WIN31       = 0x01,
    // Win 9x
    WIN95  = 0x10,
    WIN98  = 0x12,
    WINME  = 0x14,
    // Win NTx
    WINNT3 = 0x21,
    WINNT4 = 0x22,
    WIN2K  = 0x24,
    WINXP  = 0x25,
    // Future ??
    WINNEXT  = 0xFF,
} win_version;

typedef enum
{   
    WIN_UNSUPPORTED = 0x01,
    WIN_9X          = 0x10,
    WIN_NT          = 0x20,
} win_technology;

extern win_version    win32_get_windows_version(void);
extern win_technology win32_get_windows_technology(win_version);

BOOL win32_shell_execute_open(const gchar* file);
BOOL win32_create_process(gchar* application_path,gchar* arg_line,gchar* utf8_working_dir,gboolean detach,gboolean with_sdterr);
// GetLongPathName
// -------------------------------------------------------------------------
typedef HRESULT (__stdcall * PFNSHGETGETLONGPATHNAMEA)(LPCTSTR, LPTSTR, DWORD);  // "GetLongPathNameA"
typedef HRESULT (__stdcall * PFNSHGETGETLONGPATHNAMEW)(LPCTSTR, LPTSTR, DWORD); // "GetLongPathNameW"

#ifndef _MSC_VER
#ifdef UNICODE
#define GetLongPathName     GetLongPathNameA
#define SZ_GETLONGPATHNAME  "GetLongPathNameA"
#define PFNGETLONGPATHNAME  PFNSHGETGETLONGPATHNAMEA
#else//UNICODE
#define GetLongPathName     GetLongPathNameW
#define SZ_GETLONGPATHNAME  "GetLongPathNameW"
#define PFNGETLONGPATHNAME  PFNSHGETGETLONGPATHNAMEW
#endif//UNICODE
#endif//_MSC_VER

//DWORD win32_get_long_path_name(LPCTSTR lpszShortPath, LPTSTR lpszLongPath, DWORD ccBuffer);
gchar* win32_long_name(gchar*);
gchar* win32_full_path(gchar*);
void win32_set_current_directory(gchar* utf8_dir);
#endif//!WINUTILS_H_C61461B7_ACF2_4011_888A_030AD5F25F8F