-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStrategy.h
More file actions
28 lines (19 loc) · 794 Bytes
/
Strategy.h
File metadata and controls
28 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/********************************************************
* Strategy.h : 策略接口文件 *
* 张永锋 *
* zhangyf07@gmail.com *
* 2010.8 *
*********************************************************/
#ifndef STRATEGY_H_
#define STRATEGY_H_
#include "Point.h"
#ifdef __unix
#define __declspec(x)
#endif
extern "C" __declspec(dllexport) Point* getPoint(const int M, const int N, const int* top, const int* _board, const int lastX, const int lastY, const int noX, const int noY);
extern "C" __declspec(dllexport) void clearPoint(Point* p);
void clearArray(int M, int N, int** board);
/*
添加你自己的辅助函数
*/
#endif