Guest User

Untitled

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #ifndef __WIN32_CONSOLE_H__
  2. #define __WIN32_CONSOLE_H__
  3.  
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <windows.h>
  7.  
  8. void gotoxy(int x, int y); //在console mode的緩衝區中移動
  9. void setcolor(const char* fore="rgb", const char* back=""); //設定console游標繪出的文字與背景顏色
  10.  
  11. #endif
Add Comment
Please, Sign In to add comment