Guest User

Untitled

a guest
Jan 12th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.11 KB | None | 0 0
  1. /*
  2.  * PROJECT:         ReactOS Simple Program
  3.  * LICENSE:         GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
  4.  * PURPOSE:         Precompiled header
  5.  * COPYRIGHT:       Copyright ??? (???)
  6.  */
  7.  
  8. #ifndef _SIMPLEPROGRAM_PRECOMP_H
  9. #define _SIMPLEPROGRAM_PRECOMP_H
  10.  
  11. /* INCLUDES *******************************************************************/
  12.  
  13. #include <stdio.h>
  14. #include <windows.h>
  15. #include <windef.h>
  16. #include <winuser.h>
  17.  
  18. /* Resources header */
  19. #include "resource.h"
  20.  
  21. /* PROTOTYPES *****************************************************************/
  22.  
  23. BOOL DlgInitHandler(_In_ HWND hDlg);
  24. INT_PTR CALLBACK DlgProc(_In_ HWND hDlg, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam);
  25. int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_ HINSTANCE hPrevInstance, _In_ LPWSTR pCmdLine, _In_ int nCmdShow);
  26.  
  27. /* GLOBALS ********************************************************************/
  28.  
  29. extern HINSTANCE hGlobalInstance;
  30. extern HICON hIcon;
  31.  
  32. /* DEFINES ********************************************************************/
  33.  
  34. #define MAX_BUFFER 256
  35.  
  36. #endif /* _SIMPLEPROGRAM_PRECOMP_H */
  37.  
  38. /* EOF */
  39.  
Advertisement
Add Comment
Please, Sign In to add comment