home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 4.ddi / GENERIC.WEX / GENERIC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-28  |  1.3 KB  |  40 lines

  1. /*
  2.  *%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  3.  *%                                       %
  4.  *%    Copyright (C) 1991, by WATCOM Systems Inc. All rights reserved.    %
  5.  *%                                       %
  6.  *%     Permission is granted to anyone to use this example program for       %
  7.  *%     any purpose on any computer system, subject to the following       %
  8.  *%    restrictions:                               %
  9.  *%                                       %
  10.  *%     1. This example is provided on an "as is" basis, without warranty. %
  11.  *%       You indemnify, hold harmless and defend WATCOM from and against %
  12.  *%       any claims or lawsuits, including attorney's, that arise or       %
  13.  *%       result from the use or distribution of this example, or any     %
  14.  *%       modification thereof.                       %
  15.  *%                                       %
  16.  *%     2. You may not remove, alter or suppress this notice from this       %
  17.  *%        example program or any modification thereof.               %
  18.  *%                                       %
  19.  *%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  20.  *
  21.  * GENERIC.H
  22.  *
  23.  * definitions for the generic windows program
  24.  *
  25.  */
  26. typedef struct {
  27. char far *cmdline;
  28. } extra_data;
  29.  
  30. #define EXTRA_DATA_OFFSET    0
  31.  
  32. #define MENU_ABOUT        1
  33. #define MENU_CMDSTR        2
  34.  
  35. #ifdef __WINDOWS_386__
  36. #define _EXPORT
  37. #else
  38. #define _EXPORT __export
  39. #endif
  40.