home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / rockem / winmain.h < prev   
Encoding:
C/C++ Source or Header  |  1997-07-15  |  613 b   |  21 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1997 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.