Thông báo

Collapse
No announcement yet.

Làm sao để sử dụng thư viện dos.h trong Visual C++ 6.0

Collapse
X
 
  • Lọc
  • Giờ
  • Show
Clear All
new posts

  • Làm sao để sử dụng thư viện dos.h trong Visual C++ 6.0

    Em có một đoạn mã đơn giản như sau

    Code:
    #include "stdafx.h"
    #include "dos.h"
    
    int main(int argc, char* argv[])
    {
    	outportb(0x43,0xB6);
    	outportb(0x42,4235);
    	outportb(0x42,4235>>8);
    	Sleep(1000);
    	return 0;
    }
    Cùng đoạn này khi dịch ở Visual C++ 6.0 trên máy ở phòng kỹ thuật ghép nối trên trường thì chạy ầm ầm. Loa nhỏ trong máy tính kêu khá to. Tuy nhiên khi dịch ở nhà thì nó báo lỗi:

    error C2065: 'outportb' : undeclared identifier
    error C2065: 'Sleep' : undeclared identifier

    Tại sao lại thế nhỉ.

  • #2
    Nguyên văn bởi i386 Xem bài viết
    Em có một đoạn mã đơn giản như sau

    [CODE]#include "stdafx.h"
    #include "dos.h"


    Tại sao lại thế nhỉ.
    Khi include những thư viện có sẵn của C++ ví dụ dos.h thì bạn phải #include <dos.h> .Cái #include "file.h" là file.h đó do bạn tạo ra.
    The goal of power electronics is control the flow of energy from an electrical source to an electrical load with high efficiency, high availability, high reliability, light weight and low cost.

    Comment

    Về tác giả

    Collapse

    i386 Tìm hiểu thêm về i386

    Bài viết mới nhất

    Collapse

    Đang tải...
    X