~mingw-w64/mingw-w64/experimental

« back to all changes in this revision

Viewing changes to include_ce/appnav.h

  • Committer: vrichomme
  • Date: 2009-02-18 17:38:34 UTC
  • Revision ID: svn-v4:4407c894-4637-0410-b4f5-ada5f102cad1:experimental:616
put some preliminary work about wince in include_ce

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * This file has no copyright assigned and is placed in the Public Domain.
 
3
 * This file is part of the w64 mingw-runtime package.
 
4
 * No warranty is given; refer to the file DISCLAIMER within this package.
 
5
 */
 
6
 
 
7
#ifndef _APPNAV_H
 
8
#define _APPNAV_H
 
9
 
 
10
#ifdef  __cplusplus
 
11
extern "C" {
 
12
#endif
 
13
 
 
14
 
 
15
#if _WIN32_WCE < 500
 
16
 
 
17
#error appnav.h is only available for Windows CE 5.01 and later
 
18
 
 
19
#else
 
20
 
 
21
#include <windows.h>
 
22
 
 
23
HRESULT CalendarNewAppointment();
 
24
HRESULT ContactsNewContact();
 
25
 
 
26
 
 
27
#endif /* _WIN32_WCE < 500 */ 
 
28
 
 
29
#ifdef  __cplusplus
 
30
}
 
31
#endif
 
32
 
 
33
#endif  /* _APPNAV_H */