_getmaxstdio

스트림 I/O 수준에서 허용 되는 동시에 열린 파일의 수를 반환 합니다.

int _getmaxstdio( void );

반환 값

현재에 허용 된 동시에 열린 파일의 수를 나타내는 숫자를 반환의 stdio 수준입니다.

설명

사용 _setmaxstdio 에 허용 된 동시에 열린 파일의 수를 구성 하는 stdio 수준입니다.

요구 사항

루틴

필수 헤더

_getmaxstdio

<stdio.h>

더 많은 호환성 정보를 참조 하십시오. 호환성 소개에서 합니다.

예제

// crt_setmaxstdio.c
// The program retrieves the maximum number
// of open files and prints the results
// to the console.

#include <stdio.h>

int main()
{
   printf( "%d\n", _getmaxstdio());

   _setmaxstdio(2048);

   printf( "%d\n", _getmaxstdio());
}
  

해당 .NET Framework 항목

해당 사항 없음. 표준 C 함수를 호출할 수 있습니다 PInvoke. 자세한 내용은 플랫폼 호출 예제.

참고 항목

참조

스트림 I/O