-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoo.c
33 lines (28 loc) · 891 Bytes
/
oo.c
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
29
30
31
32
33
/**************************************************
*** Project Title: Robo Calc (robocalc) ***
*** Author: Greg Dietsche ***
*** Date: 11/21/2002 ***
*** Description: An Application designed to ***
*** Simplify the development of ***
*** programs for the Norland ***
*** Research Robot ***
***************************************************/
#include <tiams.h>
#include "RoboCalc.h"
#include "oo.h"
//used when this application is not active to retrieve attributes
AppID GetMyAppID(void)
{
return EV_getAppID((UCHAR*)APP_INTERNAL);
}
//retrieves an attribute from this applications frame under nearly any circumstance
void *OO_AbsoluteGet(ULONG selector)
{
return OO_GetAppAttr(GetMyAppID(), selector);
}
/*
BOOL OO_AbsoluteSet(ULONG selector, void *value)
{
return OO_SetAppAttr(GetMyAppID(), selector, value);
}
*/