home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / ROCKEM / WINMAIN.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  647b  |  21 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995, 1996 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File: winmain.h
  6.  *
  7.  ***************************************************************************/
  8.  
  9. #ifndef __WINMAIN_H
  10. #define __WINMAIN_H
  11.  
  12. void            RegError(char *sErr);
  13.  
  14. BOOL            InitClass(HINSTANCE hInst);
  15. BOOL            InitWindow(HINSTANCE hInst, int nCmdShow);
  16. long FAR PASCAL WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  17. int FAR PASCAL  WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow);   
  18.  
  19. #endif
  20.  
  21.