Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8602824
  • 博文数量: 1413
  • 博客积分: 11128
  • 博客等级: 上将
  • 技术积分: 14685
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-13 10:03
个人简介

follow my heart...

文章分类

全部博文(1413)

文章存档

2013年(1)

2012年(5)

2011年(45)

2010年(176)

2009年(148)

2008年(190)

2007年(293)

2006年(555)

分类: C/C++

2006-11-24 22:24:57

//枚举光驱数量及名称

    //在dev_c++中要引用sdl/sdl.h头文件

    #i nclude "sdl/SDL.h"
    #i nclude <stdio.h>
    #i nclude <stdlib.h>
    int main(int argc,char *argv[])
    {
    /* Initialize SDL first */
    if ( SDL_Init(SDL_INIT_CDROM) < 0 ) {
        fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError());
        exit(1);
        }
    atexit(SDL_Quit);

    /* Find out how many CD-ROM drives are connected to the system */
    printf("Drives available: %d\n", SDL_CDNumDrives());
    for ( int i=0; i<SDL_CDNumDrives(); ++i ) {
        printf("Drive %d: \"%s\"\n", i, SDL_CDName(i));
    }
    return 0;
}

阅读(2414) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~