xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / src / utils / utils_win.h (f8b2fe7b43777ff9d2b8822fbab68069193644ea) (4,110B) (mode 100644) [raw]
/* vifm
 * Copyright (C) 2001 Ken Steen.
 * Copyright (C) 2011 xaizek.
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef VIFM__UTILS__UTILS_WIN_H__
#define VIFM__UTILS__UTILS_WIN_H__

#include <windows.h>

#include <stddef.h> /* size_t */
#include <stdint.h> /* uint32_t */
#include <stdio.h> /* FILE */
#include <wchar.h> /* wchar_t */

#include "macros.h"
#include "test_helpers.h"

#ifndef WEXITSTATUS
#define WEXITSTATUS(a) (a)
#endif

#ifndef WIFEXITED
#define WIFEXITED(a) 1
#endif

#define lstat stat

#define PAUSE_CMD "vifm-pause"
#define PAUSE_STR " && pause || pause"

int wcwidth(wchar_t c);

/* Executes a command (full_cmd) using CreateProcess() API function.  Expects
 * path that contain spaces to be enclosed in double quotes.  cmd can equal
 * full_cmd, otherwise it should be version of full_cmd without shell prefix.
 * On internal error returns last error code and sets *returned_exit_code to
 * zero, otherwise sets *returned_exit_code to non-zero and returns exit code of
 * a process. */
int win_exec_cmd(const char cmd[], char full_cmd[], int *returned_exit_code);

/* Turns command into the one suitable to be run by a shell.  Returns the
 * string. */
char * win_make_sh_cmd(const char cmd[], ShellRequester by);

int is_win_executable(const char name[]);

int is_vista_and_above(void);

/* Converts Windows attributes to a string.
 * Returns pointer to a statically allocated buffer. */
const char * attr_str(uint32_t attr);

/* Converts Windows attributes to a long string containing all attribute values.
 * Returns pointer to a statically allocated buffer. */
const char * attr_str_long(uint32_t attr);

/* Returns pointer to a statically allocated buffer. */
const char * escape_for_cd(const char str[]);

/* Tries to cancel process gracefully.  Returns zero if cancellation was
 * requested, otherwise non-zero is returned. */
int win_cancel_process(DWORD pid);

/* Converts FILETIME to time_t.  Returns converted time. */
time_t win_to_unix_time(FILETIME ft);

/* Obtains attributes of a file.  Skips check for unmounted disks.  Doesn't
 * dereference symbolic links.  Returns the attributes, which is
 * INVALID_FILE_ATTRIBUTES on error. */
DWORD win_get_file_attrs(const char path[]);

/* Obtains type of reparse point at the location.  Returns the type or 0 on
 * error (including when path doesn't point at a reparse point). */
DWORD win_get_reparse_point_type(const char path[]);

/* Fills buffer with REPARSE_DATA_BUFFER structure characterizing the path.
 * Returns zero on success, otherwise non-zero is returned. */
int win_reparse_point_read(const char path[], char buf[], size_t buf_len);

/* Fills the buf of size buf_len with the path symbolic link specified by link
 * parameter.  Returns zero on success, otherwise non-zero is returned. */
int win_symlink_read(const char link[], char buf[], int buf_len);

/* Resolves target of a .lnk-file.  Returns zero on success and non-zero
 * otherwise. */
int win_shortcut_read(const char shortcut[], char buf[], int buf_len);

/* Converts status to exit code.  Input can be -1, meaning that status is
 * unknown.  Returns the exit code or -1 for -1 status. */
#define status_to_exit_code(status) (status)

TSTATIC_DEFS(
	int should_wait_for_program(const char cmd[]);
)

#endif /* VIFM__UTILS__UTILS_WIN_H__ */

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master