www.gusucode.com > 超级VC++整数计算器源码,支持10、2、8、16进制转换源码程序 > 超级VC++整数计算器源码,支持10、2、8、16进制转换源码程序/code/Main.cpp

    // DialogBase.cpp : Defines the entry point for the application.
// Download by http://www.NewXing.com

#include "stdafx.h"
#include "resource.h"
#include "MainDlg.h"
#include <COMMCTRL.H>

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
	//Enable IPAddress、Calendar.etc
	InitCommonControls();
	DialogBox(hInstance, MAKEINTRESOURCE(IDD_MAIN), NULL, Main_Proc);
	return 0;
}