home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / componen / interact / demo / data.2 / samples / ansic / TRAVEL / TRAVEL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  1.3 KB  |  49 lines

  1. //lRegen_FileHeading
  2. //lRegen_FileHeading
  3.  
  4.      /********************************************************************
  5.       *
  6.       *   Source File:  travel.h                                          
  7.       *   Author:       RC                                                
  8.       *   Module:       Header file for travel application                
  9.       *   Program Desc:                                                                                 
  10.       *   Date:         Fri Apr 05 12:07:05 1996                          
  11.       *   Language:     ANSI C
  12.       *
  13.       ********************************************************************/
  14.  
  15. #include <windows.h>
  16.  
  17. #include ".\Resource.h"
  18.  
  19.  
  20.  
  21. extern HINSTANCE   hInstance;
  22. extern char        szAppName[30];
  23. #define EXPORT __export
  24.  
  25.  
  26.  
  27. //lRegen_Header
  28. #include <pvido.h>
  29. #include <malloc.h>
  30.  
  31. #define IDC_IDO  701
  32.  
  33. extern HWND   hIDO;
  34.  
  35. typedef struct
  36. {
  37.    long lDistance;
  38.    char szNamePrevious[99+1];
  39.    char szNamePreviousLine[99+1];
  40. } USERDATA, FAR * LPUSERDATA;
  41.  
  42. //lRegen_Header
  43.  
  44. // Function prototypes for dialog and subdialog modules
  45. int fnAbouttravel(HWND, UINT, void FAR *);
  46. int fndistance(HWND, UINT, void FAR *);
  47. int fnnewpath(HWND, UINT, void FAR *);
  48. int fnnewcity(HWND, UINT, void FAR *);
  49.