bdosptr

bdosptr是一個函式,功 能: DOS系統調用

基本介紹

  • 外文名:bdosptr
  • 類型:函式
  • 功能: DOS系統調用
  • 領域:計算機技術
函式名,功能,用法,程式例,

函式名

bdosptr

功能

DOS系統調用

用法

int bdosptr(int dosfun, void *argument, unsigned dosal);

程式例

#include <string.h>
#include <stdio.h>
#include <dir.h>
#include <dos.h>
#include <errno.h>
#include <stdlib.h>
#define BUFLEN 80
int main(void)
{
char buffer[BUFLEN];
int test;
printf("Enter full pathname of a directory\n");
gets(buffer);
test = bdosptr(0x3B,buffer,0);
if(test)
{
printf("DOS error message: %d\n", errno);
/* See errno.h for error listings */
exit (1);
}
getcwd(buffer, BUFLEN);
printf("The current directory is: %s\n", buffer);
return 0;
}

相關詞條

熱門詞條

聯絡我們