-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAppInfo.h
More file actions
26 lines (22 loc) · 772 Bytes
/
AppInfo.h
File metadata and controls
26 lines (22 loc) · 772 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
/**************************************************
*** Project Title: Command Post (KFLASH) ***
*** Author: Greg Dietsche ***
*** Date: 07/23/2002 ***
*** Description: An application designed for ***
*** use with the TI-89 and TI-92 Plus Graphing ***
*** calculators during the testing and ***
*** debugging phases of FLASH APPS and RAM ***
*** programs ***
***************************************************/
// $Id: AppInfo.h 13 2004-08-05 20:26:49Z dietsche $
#ifndef _APP_INFO_H_
#define _APP_INFO_H_
typedef struct {
WORD optList[1];
HANDLE pupApps;
short page;
}APP_INFO_DAT;
DWORD cbAppInfoSelect(WORD DlgId, DWORD dValue);
HANDLE pupAppInfoApps(WORD index);
void DoAppInfoDialog(void);
#endif