일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- TiDB
- Preprocessor
- 포인터변수
- newSQL
- 컴퓨터 강좌
- Pointer
- UNIX Internals
- 전처리기
- 포인터
- Symbol
- go
- 구조와 원리
- 긴옵션
- 약어
- DBMS
- 함수포인터
- 한빛미디어
- UNIX
- SQLite
- getopts
- FreeBSD
- 커널
- TiKV
- Golang
- OS 커널
- bash
- Programming
- kernel
- Windows via c/c++
- DBMS 개발
- Today
- Total
목록개발자 이야기/Scheme & Java & etc. (2)
sonumb
Visual Studio 2005 상에서 쓰이는 Macro 환경 변수 Macro Description $(ConfigurationName) The name of the current project configuration, for example, "Debug|Any CPU". $(OutDir) Path to the output file directory, relative to the project directory. This resolves to the value for the Output Directory property. It includes the trailing backslash '\'. $(DevEnvDir) The installation directory of Visual Studio 2005..
티스토리 내에서 code 표현시 이렇게 해봅시다. 듬직이 님의 블로그 에서 따라해보세요. 속도는 많이 느리네요. :0 코드 손좀 볼까봐요 ;p ex) // BASIC DEVICE DRIVER #include "ntddk.h" NTSTATUS OnStubDispatch (IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) { Irp->IoStatus.Status = STATUS_SUCCESS; IoCompleteRequest( Irp, IO_NO_INCREMENT ); DbgPrint("OnStub"); return STATUS_SUCCESS; } VOID OnUnload( IN PDRIVER_OBJECT DriverObject ) { DbgPrint("OnUnload2 cal..