This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8" session="false" %> | |
<%--@elvariable id="url" type="java.lang.String"--%> | |
<%--@elvariable id="total_records" type="java.lang.Integer"--%> | |
<%--@elvariable id="current_page" type="java.lang.Integer"--%> | |
<%--@elvariable id="page_size" type="java.lang.Integer"--%> | |
<style type="text/css"> | |
div.pagination { | |
margin-top: 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
IF [%1]==[] ( | |
echo Missing argument | |
echo Usage: javakill ^<string^> [/A] [/Q] | |
echo /A - Kill all found processes | |
echo /Q - Be quite ^(don't ask if found more than one process^) | |
goto :exit | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void | |
ClearCells(XtermWidget xw, int flags, unsigned len, int row, int col) | |
{ | |
if (len != 0) { | |
TScreen *screen = TScreenOf(xw); | |
LineData *ld; | |
unsigned n; | |
ld = getLineData(screen, row); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Runtime.InteropServices; | |
namespace DZ.Opc.Integration.Internal | |
{ | |
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] | |
public struct COSERVERINFO | |
{ | |
public uint dwReserved1; |
NewerOlder