Welcome to mirror list, hosted at ThFree Co, Russian Federation.

callout.h « cygwin « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f5067548ed93113b192e87eb851f312dc68e479 (plain)
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
/* callout.h -- Definitions used by Cygwin callout mechanism

   Copyright 2013 Red Hat, Inc.

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#pragma once

extern "C" {
enum cw_callout_t
{
  CO_ENV,
  CO_SPAWN,
  CO_SYMLINK,
  CO_UNAME
};

enum cw_callout_return_t
{
  CO_R_ERROR,
  CO_R_KEEP_GOING,
  CO_R_SHORT_CIRCUIT
};

typedef cw_callout_return_t (*cw_callout_function_t) (cw_callout_t, ...);
};