Code:
#include <windows.h> #include <commctrl.h> #include <stdio.h> HWND hwndMain; HWND hwndTab; HINSTANCE hinst; int oldTabPage; int NumToPower(int num, int power) { if(power==1) return num; return num*NumToPower(num, power-1);
#include <windows.h> #include <commctrl.h> #include <stdio.h> HWND hwndMain; HWND hwndTab; HINSTANCE hinst; int oldTabPage; int NumToPower(int num, int power) { if(power==1) return num; return num*NumToPower(num, power-1);
#include <windows.h> #include <commctrl.h> HWND hwndMain; HWND hwndTab; HWND hwnd0; HWND hwnd1; HWND hwnd2; HWND hwnd3; HINSTANCE hinst; LRESULT CALLBACK ChildrenProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch(msg) { case WM_CLOSE: DestroyWindow(hwnd);
#include <windows.h> #include <commctrl.h> #include <stdio.h> HWND hwndMain; HWND hwndTab; HWND hwnd0; HWND hwnd1; HWND hwnd2; HWND hwnd3;
Leave a comment: