~ubuntu-branches/ubuntu/natty/freecell-solver/natty

« back to all changes in this revision

Viewing changes to caas.h

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2009-07-15 17:42:19 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090715174219-2rlyyvse0kezacly
Tags: 2.34.0-1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef FC_SOLVE__CAAS_H
3
 
#define FC_SOLVE__CAAS_H
4
 
 
5
 
#ifdef __cplusplus
6
 
extern "C" {
7
 
#endif
8
 
 
9
 
/* #define FCS_USE_INLINE */
10
 
 
11
 
/*
12
 
 * check_and_add_state is defined in caas.c.
13
 
 *
14
 
 * DFS stands for Depth First Search which is the type of scan Freecell
15
 
 * Solver uses to solve a given board.
16
 
 * */
17
 
 
18
 
extern int fc_solve_check_and_add_state(
19
 
    fc_solve_soft_thread_t * soft_thread,
20
 
    fcs_state_extra_info_t * new_state_val,
21
 
    fcs_state_extra_info_t * * existing_state_val
22
 
    );
23
 
 
24
 
#ifdef __cplusplus
25
 
}
26
 
#endif
27
 
 
28
 
#endif /* #ifndef FC_SOLVE__CAAS_H */