File: win32redir.h

package info (click to toggle)
rsyncrypto 1.14-1.2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,552 kB
  • sloc: cpp: 3,459; sh: 1,221; makefile: 29
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