source: svn/trunk/newcon3bcm2_21bu/dta/src/sim/sim.h @ 23

Last change on this file since 23 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
  • Property svn:executable set to *
File size: 1.1 KB
Line 
1/***************************************************************************
2 * Copyright (c) 2012, Broadcom Corporation
3 * All Rights Reserved
4 * Confidential Property of Broadcom Corporation
5 *
6 * THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7 * AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8 * EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9 *
10 * $brcm_Workfile:  $
11 * $brcm_Revision:  $
12 * $brcm_Date: $
13 *
14 * Module Description:
15 *
16 * Revision History:
17 *
18 * $brcm_Log:  $
19 *
20 ***************************************************************************/
21#ifndef __SIM_H__
22#define __SIM_H__
23
24#include "gtk_app.h"
25
26typedef struct sim_t *sim_h;
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32sim_h sim_init(gtk_app_h h_app);
33void sim_run(sim_h h_sim);
34void sim_done(sim_h h_sim);
35int sim_screen_num(sim_h h_sim);
36void sim_screen_get_desc(sim_h h_sim,
37                                                 int idx,
38                                                 char* desc,
39                                                 int max_desc_len);
40void sim_screen_set_screen(sim_h h_sim,
41                                                 int idx);
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif /* __SIM_H__ */
48
49
50
51
52
Note: See TracBrowser for help on using the repository browser.