/*+MHDR*/
/*
+------------------------------------------------------------------------------+
#  Modulname: usergate.h
#  Clearcase: @@/main/5
#  VersionId: Tau4.2
+------------------------------------------------------------------------------+
|                                                                              |
|  Description  : This is the main modul of the sdtgate for windows. In this   |
|  modul the application's window is initialized and the windows message queue |
|  is handled.                                                                 |
|                                                                              |
+------------------------------------------------------------------------------+
*/
/*-MHDR*/

/*
+------------------------------------------------------------------------------+
|                                                                              |
|  Copyright by Telelogic AB 1993 - 2001                                       |
|                                                                              |
|  This Program is owned by Telelogic and is protected by national             |
|  copyright laws and international copyright treaties. Telelogic              |
|  grants you the right to use this Program on one computer or in              |
|  one local computer network at any one time.                                 |
|  Under this License you may only modify the source code for the purpose      |
|  of adapting it to your environment. You must reproduce and include          |
|  any copyright and trademark notices on all copies of the source code.       |
|  You may not use, copy, merge, modify or transfer the Program except as      |
|  provided in this License.                                                   |
|  Telelogic does not warrant that the Program will meet your                  |
|  requirements or that the operation of the Program will be                   |
|  uninterrupted and error free. You are solely responsible that the           |
|  selection of the Program and the modification of the source code            |
|  will achieve your intended results and that the results are actually        |
|  obtained.                                                                   |
|                                                                              |
+------------------------------------------------------------------------------+
*/

#ifndef __USERGATE_H_
#define __USERGATE_H_

#ifdef XMK_WINDOWS
  /*
  **      Resource Defines
  */
  #define IS_CLIENT
  #undef  IS_SERVER
  #define ID_DDECLIENT                   100
  #define ID_DDESERVER                   101

  /*
  **      Menu Selection Defines
  */
  #define IDM_EXIT                       100
  #define IDM_MSG_TO_SERVER              104
  #define IDM_ABOUT                      203
  #define ID_VERSIONSTRING               204 
 
  #define UDM_TOSERVER 0x7777

#else /* XMK_UNIX */
  #define XPP(x) x

#endif


#ifdef __cplusplus
  extern "C" {
#endif


#ifdef __cplusplus
  }
#endif

#endif /* __USERGATE_H_ */
