Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
eec04aeb
Commit
eec04aeb
authored
Dec 31, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 31, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemine: Reorder some functions to avoid forward declarations.
parent
165650d8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
50 deletions
+0
-50
main.c
programs/winemine/main.c
+0
-0
main.h
programs/winemine/main.h
+0
-50
No files found.
programs/winemine/main.c
View file @
eec04aeb
This diff is collapsed.
Click to expand it.
programs/winemine/main.h
View file @
eec04aeb
...
...
@@ -120,58 +120,8 @@ typedef struct tagBOARD
}
BOARD
;
void
ExitApp
(
int
error
);
void
InitBoard
(
BOARD
*
p_board
);
void
LoadBoard
(
BOARD
*
p_board
);
void
SaveBoard
(
BOARD
*
p_board
);
void
DestroyBoard
(
BOARD
*
p_board
);
void
SetDifficulty
(
BOARD
*
p_board
,
DIFFICULTY
difficulty
);
void
CheckLevel
(
BOARD
*
p_board
);
void
CreateBoard
(
BOARD
*
p_board
);
void
PlaceMines
(
BOARD
*
p_board
,
int
selected_col
,
int
selected_row
);
void
TestBoard
(
HWND
hWnd
,
BOARD
*
p_board
,
int
x
,
int
y
,
int
msg
);
void
TestMines
(
BOARD
*
p_board
,
POINT
pt
,
int
msg
);
void
TestFace
(
BOARD
*
p_board
,
POINT
pt
,
int
msg
);
void
DrawBoard
(
HDC
hdc
,
HDC
hMemDC
,
PAINTSTRUCT
*
ps
,
BOARD
*
p_board
);
void
DrawMines
(
HDC
hdc
,
HDC
hMemDC
,
BOARD
*
p_board
);
void
DrawMine
(
HDC
hdc
,
HDC
hMemDC
,
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
,
BOOL
IsPressed
);
void
AddFlag
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
CompleteBox
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
CompleteBoxes
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
PressBox
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
PressBoxes
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
UnpressBox
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
UnpressBoxes
(
BOARD
*
p_board
,
unsigned
col
,
unsigned
row
);
void
UpdateTimer
(
BOARD
*
p_board
);
void
DrawLeds
(
HDC
hdc
,
HDC
hMemDC
,
BOARD
*
p_board
,
int
number
,
int
x
,
int
y
);
void
DrawFace
(
HDC
hdc
,
HDC
hMemDC
,
BOARD
*
p_board
);
LRESULT
WINAPI
MainProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
);
INT_PTR
CALLBACK
CustomDlgProc
(
HWND
hDlg
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
INT_PTR
CALLBACK
CongratsDlgProc
(
HWND
hDlg
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment