|
#include <windows.h>
#include "resource.h"
#include <stdio.h>
typedef enum{_number, _add, _sub, _mul, _div, _result};
BOOL check_first_operation = true; // 최초 연산인지 확인하는 변수
int position = 0; // 자릿수 체크
int check_state = _number; // 이전에 입력된 값
|
- 페이지 1페이지
- 가격 3,000원
- 등록일 2011.01.10
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <windows.h>
#include <math.h>
#include <time.h>
#include <stdio.h>
#include "resource.h"
#include "GrpBtn.h"
#include "Stone.h"
#define ACCEL -4
#define MAX_VELOCITY 100
#define STONE_NUM 27
enum STATE{WIN, LOSE, UNDEFINED};
typedef struct
{
int c
|
- 페이지 10페이지
- 가격 4,500원
- 등록일 2010.05.28
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
1. WM_CREATE 메시지로 WM_TIMER 메시지를 생성
2. DC핸들과 메모리 DC핸들 생성
3. WM_PAINT 메시지 호출 시 생성한 비트맵 리소스를 배열에 추가
4. DC를 생성
5. 조건문으로 배열을 차례대로 선택 해 실제적으로 이미지를 출력
6. 배열 index증가
7. 배
|
- 페이지 2페이지
- 가격 1,000원
- 등록일 2007.12.28
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
WIN32API 함수입니다. 이건 알필요 없어요
}
void Color(int background, int text)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), (background << 4) | text);
}
//[1] 커서 숨기기 : 1(보이기), 0(숨기기)
void CursorVisible(bool blnCursorVisible) // Console.CursorVisible
|
- 페이지 10페이지
- 가격 2,000원
- 등록일 2017.12.10
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
Win32API의 MCI 함수 선언
Public Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, ByVal uReturnLength As Long, ByVal hwndCallback As Long) As Long
' 플레이할 음악 파일의 파일명 변수 선언
Public songfile As String
|
- 페이지 13페이지
- 가격 2,000원
- 등록일 2005.01.12
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|