일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- VMWare vSphere
- 제한된 이식성
- Virtual Private Cloud
- 가상 프라이빗 클라우드
- dhcp
- DHCP 설치
- 온디맨드식
- 정수형 데이터타입
- Error 1720
- DHCP 설정
- VMware
- Community Cloud
- 이 컴퓨터는 도메인의 구성원이 아닙니다.
- IT 자원
- 멀티테넌시
- VMWare View Connection Serve
- 수평적 확장
- 운영관리제어의 축소
- 클라우드 자원 관리자
- 고정 IP주소를 가진 네트워크 어댑터를 검색할 수 없습니다.
- View Connection
- 커뮤니티 클라우드
- 온 프레미스
- 클라우드 소비자
- 수직적 확장
- 클라우드 보안 취약성
- 자원 풀링
- 클라우드 서비스 소유자
- 도메인 사용자 또는 그룹을 확인할 수 없습니다.
- 클라우드 제공자
- Today
- Total
한 걸음씩..
드라이버 사용 기간 제한 하기! (시간 함수 사용) 본문
#define TwoSeconds (2*1000*1000*10)
#define AlmostTwoSeconds (TwoSeconds - 1)
NTSTATUS HJGetTime( CSHORT LimitYear, CSHORT LimitMonth )
{
LARGE_INTEGER Time;
TIME_FIELDS TimeFields;
//
// Get the current system time, and map it into a time field record.
//
KeQuerySystemTime( &Time );
ExSystemTimeToLocalTime( &Time, &Time );
//
// Always add almost two seconds to round up to the nearest double second.
//
Time.QuadPart = Time.QuadPart + AlmostTwoSeconds;
(VOID)RtlTimeToTimeFields( &Time, &TimeFields );
//
// Now simply copy over the information
//
DbgPrint( "Year:%d, Month:%d, Day:%d \n", TimeFields.Year, TimeFields.Month, TimeFields.Day );
if( (TimeFields.Year > LimitYear) || (TimeFields.Month > LimitMonth) )
{
return STATUS_UNSUCCESSFUL;
}
return STATUS_SUCCESS;
}
'프로그래밍' 카테고리의 다른 글
WideChar , Multibyte 변환 시 주의 할점 (1) | 2013.08.08 |
---|---|
프로세스 숨기기 (1) | 2013.07.22 |
PCI Driver - IRP_MN_START_DEVICE 에서 주의 할 점 (0) | 2013.07.20 |
Keyboard Memory Dump 발생시키기 (0) | 2013.07.19 |
Linux Driver 메모리 할당 - kmalloc / kfree (0) | 2013.07.18 |