Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv5941/src/include
Modified Files:
Types.h
Added Files:
DateEntry.h
Log Message:
Add support for DateEntry control
--- NEW FILE: DateEntry.h ---
#ifndef DATEENTRY_H
#define DATEENTRY_H
#include "Types.h"
WindowHandle osCreateDateEntry(WindowHandle window);
void osGetDateEntryReqSize(WindowHandle entry, int *res);
time_t osGetDateEntryValue(WindowHandle entry);
void osSetDateEntryValue(WindowHandle entry, time_t value);
#endif
Index: Types.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Types.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** Types.h 18 Nov 2003 18:03:41 -0000 1.20
--- Types.h 24 Nov 2003 22:40:41 -0000 1.21
***************
*** 9,12 ****
--- 9,13 ----
#include <memory.h>
#include <string.h>
+ #include <time.h>
typedef enum {PosLeft=0, PosTop=1, PosRight=2, PosBottom=3} PositionType;
|