bdosptr
计算机程序函数
bdosptr是一个函数,功 能: DOS系统调用
函数名
bdosptr
功能
DOS系统调用
用法
int bdosptr(int dosfun, void *argument, unsigned dosal);
程序例
#include
#include
#include
#include <dos.h>
#include
#include
#define BUFLEN 80
int main(void)
{
char buffer[BUFLEN];
int test;
gets(buffer);
test = bdosptr(0x3B,buffer,0);
if(test)
{
/* See errno.h for error listings */
exit (1);
}
getcwd(buffer, BUFLEN);
return 0;
}
参考资料
最新修订时间:2024-03-19 08:57
目录
概述
函数名
功能
用法
程序例
参考资料