본문 바로가기
반응형

Study/C C++ 29

MFC 전역변수 사용하기 기말대체 , MFC 프로젝트를 제출하는 날도 얼마 안남았네요; 망할 MFC 그것보다, 전역변수 사용하려고 의외으 뻘짓을 했는데 구글신꼐서 말씀하시길 예_ // StdAfx.h #include ... #include ... #include ... ... extern int g_nData; // StdAfx.cpp #include ... ... int g_nData = 0; 이러면 된다고 하셨는데, 진짜 됩니다. 참고로 제가 쓰는건 6.0 입니다. ..///아 지금 2010 나온다고 하는데.. 6.0이라.. 2009. 12. 20.
윈도우 mfc bzero 전학기에, mysql gcc 를 이용해서, 사전을 만든적이 있는데,, 이번에 MFC 프로젝트를 하게 되었는데, 저번에 mysql을 한것이 익숙해서 연결을 연동?을 해서,, 일종의 물품 관리 프로그램을 만들고 있습니다.,,, 기말 대체라.. bzero를 사용해보려고 하니 undifne 되었다고 나오네요.. string.h를 분명히 넣었거든요;; 웹상에서 잠깐 본거로는 string.h가 윈도우 없데나-;; 그래서 과거에 memset이라는걸 알아서... memset을 사용하고 있습니다.. bzero((char, sizeof(char)); memset(char, 0x00, sizeof(char)); 이렇게 변환해서 사용한다면 된다고 하더군요.. 구글께서는.. 2009. 12. 9.
getch() for Linux 구글 신이 있어서 다행이지,, 휴... 모방한번 모방? 모방인가- 한번하는거 힘드네;;; 출처는 http://cboard.cprogramming.com/faq-board/27714-faq-there-getch-conio-equivalent-linux-unix.html #include #include #include int mygetch( ) { struct termios oldt, newt; int ch; tcgetattr( STDIN_FILENO, &oldt ); newt = oldt; newt.c_lflag &= ~( ICANON | ECHO ); tcsetattr( STDIN_FILENO, TCSANOW, &newt ); ch = getchar(); tcsetattr( STDIN_FILENO, TC.. 2009. 7. 3.
kbhit() for Linux 마찬가지로,, kbhit을 대체할수 있는 방법을 찾다가;; 아직 해보지는 않았는데;;; 궁금하시면 #include stdio.h> #include termios.h> #include unistd.h> #include sys/types.h> #include sys/time.h> /* This id to hide the character we type and suspend any prints after dir 1 , displayed ony when dir 0 */ void changemode ( int dir ) { static struct termios oldt, newt; if ( dir == 1 ) { tcgetattr ( STDIN_FILENO, &oldt ); newt = oldt; newt.c_.. 2009. 7. 3.
gcc , clrscr gotoxy #include #include void clrscr(void) { int i; for (i = 0; i < 100; i++) // A bunch of new lines for now. It's blank, hey! putchar('\n');} int gotoxy(int x, int y) { char essq[100]; // String variable to hold the escape sequence char xstr[100]; // Strings to hold the x and y coordinates char ystr[100]; // Escape sequences must be built with characters /* ** Convert the screen coordinates to string.. 2009. 7. 2.
온라인 man 조인시위키 http://www.opengroup.org/onlinepubs/007908799/index.html KLDP 위키 ..지금 다른 컴파일러로 작성된것을 gcc로 모방도중 없는 함수가 있어서 대체할 함수를 찾다가 찾은 온라인 man 페이지;;; 2009. 7. 2.
반응형