forceunload.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #include <sys/types.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <strings.h>
  5. #include <sys/ioctl.h>
  6. #include <unistd.h>
  7. #include <fcntl.h>
  8. #include <asm/errno.h>
  9. #include "ixjuser.h"
  10. int main(int argc, char *argv[])
  11. {
  12.   int ixj;
  13.   ixj = open("/dev/ixj0", O_RDWR|O_NONBLOCK);
  14.   ioctl(ixj, IXJCTL_MODRESET);
  15.   close(ixj);
  16. }