File: win32redir.h

package info (click to toggle)
rsyncrypto 1.12-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 1,312 kB
  • ctags: 576
  • sloc: sh: 3,958; cpp: 3,253; makefile: 70
file content (15 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Win32 implementation

#if !defined(_WIN32)
#error Win32 only header included from non-Win32 build environment
#endif

#if !defined(WIN32_REDIR_H)
#define WIN32_REDIR_H

struct win32_redir_opaq {
    STARTUPINFO *si;
    autohandle handle;
};

#endif // WIN32_REDIR_H