Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * PROJECT: ReactOS Simple Program
- * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
- * PURPOSE: Precompiled header
- * COPYRIGHT: Copyright ??? (???)
- */
- #ifndef _SIMPLEPROGRAM_PRECOMP_H
- #define _SIMPLEPROGRAM_PRECOMP_H
- /* INCLUDES *******************************************************************/
- #include <stdio.h>
- #include <windows.h>
- #include <windef.h>
- #include <winuser.h>
- /* Resources header */
- #include "resource.h"
- /* PROTOTYPES *****************************************************************/
- BOOL DlgInitHandler(_In_ HWND hDlg);
- INT_PTR CALLBACK DlgProc(_In_ HWND hDlg, _In_ UINT Msg, _In_ WPARAM wParam, _In_ LPARAM lParam);
- int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_ HINSTANCE hPrevInstance, _In_ LPWSTR pCmdLine, _In_ int nCmdShow);
- /* GLOBALS ********************************************************************/
- extern HINSTANCE hGlobalInstance;
- extern HICON hIcon;
- /* DEFINES ********************************************************************/
- #define MAX_BUFFER 256
- #endif /* _SIMPLEPROGRAM_PRECOMP_H */
- /* EOF */
Advertisement
Add Comment
Please, Sign In to add comment