Posts with tag #fit


page 1 of 3

admin ITU WPF cviecni
591×448 (7.5 kiB)


admin Rozsazení na TIN test
2706×2082 (74.4 kiB)

Lecture rooms for the first TIN test


admin ITU winapi cviceni
985×690 (7.6 kiB)

#include <windows.h>
#include <string.h>
#include <stdio.h>
#include <math.h>

#define not !


// Global variable
HINSTANCE hInst;
UINT MessageCount = 0;
UINT Count = 0;
int posX = 0;
int posY = 0;

/* length 3 */
COLORREF colors[] = {
RGB(255,0,0),
RGB(0, 255, 0),
RGB(255, 255, 0)
};

COLORREF color = RGB(255, 0, 0);
int color_count;

int speed = 5;


// Function prototypes.
int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
void paintObject(HWND hWnd, HDC hDC, PAINTSTRUCT ps, int posX, int posY, POINT cursorPosition);
void paintObject2(HWND hWnd, HDC hDC, PAINTSTRUCT ps, int posX, int posY, POINT cursorPosition);
void paintPosition(HWND hWnd, HDC hDC, PAINTSTRUCT ps);

// Application entry point. This is the same as main() in standart C.
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
MSG msg;
BOOL bRet;
WNDCLASS wcx; // register class
HWND hWnd;

hInst = hInstance; // Save the application-instance handle.
// Fill in the window class structure with parameters that describe the main window.

wcx.style = CS_HREDRAW | CS_VREDRAW; // redraw if size changes
wcx.lpfnWndProc = (WNDPROC)MainWndProc; // points to window procedure
wcx.cbClsExtra = 0; // no extra class memory
wcx.cbWndExtra = 0; // no extra window memory
wcx.hInstance = hInstance; // handle to instance
wcx.hIcon = LoadIcon(NULL, IDI_APPLICATION); // predefined app. icon
wcx.hCursor = LoadCursor(NULL, IDC_ARROW); // predefined arrow
wcx.hbrBackground = GetStockObject(WHITE_BRUSH); // white background brush
wcx.lpszMenuName = (LPCSTR)"MainMenu"; // name of menu resource
wcx.lpszClassName = (LPCSTR)"MainWClass"; // name of window class

// Register the window class.

if (!RegisterClass(&wcx)) return FALSE;

// create window of registered class

hWnd = CreateWindow(
"MainWClass"


isa-notes MULTICAST CLIENT
877×851 (44.8 kiB)

tady je nejdůležitější asi IP_ADD_MEMBERSHIP a také IP_DROP_MEMBERSHIP (man 7 ip)


isa-notes LDAP structure
512×444 (11.1 kiB)

As defined by X.500, note that DC=Domain-Component, OU=Organizational-Unit, CN=Common-Name


isa-notes H323 terminal parts
1082×490 (29.1 kiB)

tohle je tak trošku obvious ale říkal jsem si že radši to sem dám, souce: MOONYROS


isa-notes DASH, HLS comparison - long
678×720 (99.0 kiB)

je to z knížky Tanenbaum, Feamster, Wetherall,Computer Networks, šesté vydání


isa-notes More info on MPEG-DASH
2039×3302 (443.3 kiB)

Je to z knížky Kurose, Ross, Computer Netwirking, A Top-Down Approach, sedmé vydání


isa-notes PAT, PMT tables
1080×813 (74.7 kiB)

screenshot z wikipedie


isa-notes The program association table (PAT) lists all programs available in the transport stream. Each of the listed programs is identified by a 16-bit value called program_number.

isa-notes PMTs contain information about programs. For each program, there is one PMT.