/// Win32 APIの一例 HWND CreateWindow( LPCTSTR lpClassName , LPCTSTR lpWindowName, // lp=long pointer の接頭辞 DWORD dwStyle , // dw=double word の接頭辞 int x , int y , int nWidth , int nHeight , // n=integer の接頭辞 HWND hWndParent , // h=handle の接頭辞 HMENU hMenu , HANDLE hInstance , LPVOID lpParam ); DWORD dwStyle = WS_DLGFRAME; int nWidth = 300; CreateWindow("MainWindow","window",0,0,nWidth,nHeight,dwStyle,hWnd,hMenu,hInstance,NULL); // dwStyle引数指定順が間違っている
int dollIncome; // doll=ドルの接頭辞 int yenDeposit; // yen=円の接頭辞 int yenAsset = dollIncome + yenDeposit;
total:30120today:56yesterday:12