~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-headers/include/sec_api/conio_s.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * This file has no copyright assigned and is placed in the Public Domain.
 
3
 * This file is part of the w64 mingw-runtime package.
 
4
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 
5
 */
 
6
 
 
7
#ifndef _INC_CONIO_S
 
8
#define _INC_CONIO_S
 
9
 
 
10
#include <conio.h>
 
11
 
 
12
#if defined(MINGW_HAS_SECURE_API)
 
13
 
 
14
#ifdef __cplusplus
 
15
extern "C" {
 
16
#endif
 
17
 
 
18
  _CRTIMP errno_t __cdecl _cgets_s(char *_Buffer,size_t _Size,size_t *_SizeRead);
 
19
  _CRTIMP int __cdecl _cprintf_s(const char *_Format,...);
 
20
  _CRTIMP int __cdecl _cscanf_s(const char *_Format,...);
 
21
  _CRTIMP int __cdecl _cscanf_s_l(const char *_Format,_locale_t _Locale,...);
 
22
  _CRTIMP int __cdecl _vcprintf_s(const char *_Format,va_list _ArgList);
 
23
  _CRTIMP int __cdecl _cprintf_s_l(const char *_Format,_locale_t _Locale,...);
 
24
  _CRTIMP int __cdecl _vcprintf_s_l(const char *_Format,_locale_t _Locale,va_list _ArgList);
 
25
 
 
26
#ifndef _WCONIO_DEFINED_S
 
27
#define _WCONIO_DEFINED_S
 
28
  _CRTIMP errno_t __cdecl _cgetws_s(wchar_t *_Buffer,size_t _SizeInWords,size_t *_SizeRead);
 
29
  _CRTIMP int __cdecl _cwprintf_s(const wchar_t *_Format,...);
 
30
  _CRTIMP int __cdecl _cwscanf_s(const wchar_t *_Format,...);
 
31
  _CRTIMP int __cdecl _cwscanf_s_l(const wchar_t *_Format,_locale_t _Locale,...);
 
32
  _CRTIMP int __cdecl _vcwprintf_s(const wchar_t *_Format,va_list _ArgList);
 
33
  _CRTIMP int __cdecl _cwprintf_s_l(const wchar_t *_Format,_locale_t _Locale,...);
 
34
  _CRTIMP int __cdecl _vcwprintf_s_l(const wchar_t *_Format,_locale_t _Locale,va_list _ArgList);
 
35
#endif
 
36
 
 
37
#ifdef __cplusplus
 
38
}
 
39
#endif
 
40
 
 
41
#endif
 
42
#endif