Skip to content

Commit

Permalink
Update nop.c
Browse files Browse the repository at this point in the history
  • Loading branch information
myfreeer committed Jun 1, 2016
1 parent d2dd840 commit 08c5606
Showing 1 changed file with 1 addition and 44 deletions.
45 changes: 1 addition & 44 deletions nop.c
Original file line number Diff line number Diff line change
@@ -1,54 +1,11 @@
//+---------------------------------------------------------------------------
//
// HELLO_WIN.C - Windows GUI 'Hello World!' Example
//
//+---------------------------------------------------------------------------

#include <windows.h>

#define APPNAME "HELLO_WIN"

char szAppName[] = APPNAME; // The name of this application
char szTitle[] = APPNAME; // The title bar text
const char *pWindowText;

void CenterWindow(HWND hWnd);

//+---------------------------------------------------------------------------
//
// Function: WndProc
//
// Synopsis: very unusual type of function - gets called by system to
// process windows messages.
//
// Arguments: same as always.
//----------------------------------------------------------------------------

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
return 0;
}

//+---------------------------------------------------------------------------
//
// Function: WinMain
//
// Synopsis: standard entrypoint for GUI Win32 apps
//
//----------------------------------------------------------------------------
int WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow
)
{

return 0;
return 0;
}

//+---------------------------------------------------------------------------

//+---------------------------------------------------------------------------

//+---------------------------------------------------------------------------

0 comments on commit 08c5606

Please sign in to comment.