home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / windows / editor / dsimport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-24  |  669 b   |  32 lines

  1. #include "windows.h"
  2.  
  3. #define CDECL cdecl
  4.  
  5. #ifdef RC_INVOKED
  6. #define ID(id) id
  7. #else
  8. #define ID(id) MAKEINTRESOURCE(id)
  9. #endif
  10.  
  11. #define DSIMPORT ID(1)
  12.  
  13. #define IDD_ABOUT ID(300)
  14.  
  15. #define DSIMENU ID(400)
  16.  
  17. #define IDS_APPNAME 1000
  18. #define IDS_UNTITLED 1001
  19. #define IDS_TITLE 1002
  20.  
  21. #define IDM_FILEEXIT 2000
  22. #define IDM_HELPABOUT 2001
  23.  
  24. extern HANDLE hInst;
  25. extern HWND hwndImportWnd;
  26.  
  27. BOOL FAR PASCAL InitializeApplication(HANDLE);
  28. BOOL FAR PASCAL InitializeInstance(LPSTR, int);
  29. BOOL FAR PASCAL AboutDlgProc(HWND, WORD, WORD, LONG);
  30. LONG FAR PASCAL ImportWndProc(HWND, WORD, WORD, LONG);
  31. int FAR PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  32.