일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- miniconda
- Proxy
- 한글가이드
- XCP-ng
- 보안양파
- macos
- PlayBook
- application security
- Windows
- freebsd
- Kibana server is not ready yet
- xe guest utilities
- G-suite
- ansible
- ssh key 배포
- Elasticsearch
- pfsense
- endpoint security
- 로그인불가
- docker
- ELASTIC
- hardening
- GitLab
- Kibana
- proxycfg
- elastic stack
- centos 8
- x-pack
- bash
- Today
- Total
선 밖에 선 자유인
마이크로소프트 Windows 자료형 본문
BOOL Boolen variable typedef int BOOL;
DWORD 32-bit unsigned integer typedef unsigned long DWORD;
DWORD32 32-bit unsigned integer typedef unsigned int DWORD32;
DWORD64 64-bit unsigned integer typedef unsigned _int64 DWORD64;
INT 32-bit signed integer typedef int INT;
INT32 32-bit signed integer typedef signed int INT32;
INT64 64-bit signed integer typedef signed _int64 INT64;
LONG 32-bit signed integer typedef long LONG;
LONG32 32-bit signed integer typedef signed int LONG32;
LONG64 64-bit signed integer typedef signed _int64 LONG64;
UINT Unsigned INT typedef unsigned int UNIT;
UINT32 Unsigned INT32 typedef unsigned int UINT32;
ULONG Unsigned LONG typedef unsigned int ULONG;
ULONG32 Unsigned LONG32 typedef typedef unsigned int ULONG32;
ULONG64 Unsigned LONG64 typedef unsigned _int64 ULONG64;
PINT INT32에 대한 포인터 typedef int* PINT;
PINT32 INT32에 대한 포인터 typedef signed int* PINT32;
PINT64 INT64에 대한 포인터 typedef signed _int64* PINT64;
PLONG LONG에 대한 포인터 typedef LONG* PLONG;
PLONG32 LONG32에 대한 포인터 typedef signed int* PLONG32;
PLONG64 LONG64에 대한 포인터 typedef signed _int64* PLONG64;
PUINIT UINT에 대한 포인터 typedef unsigned int* PUINT;
PUINT32 UINT32에 대한 포인터 typedef unsigned int* PUINT32;
PUINT64 UINT64에 대한 포인터 typedef unsigned int* PUINT64;
PULONG ULONG에 대한 포인터 typedef ULONG* PULONG;
PULONG32 ULONG32에 대한 포인터 typedef int* PULONG32;
PULONG64 ULONG64에 대한 포인터 typedef _int64* PULONG64;