Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacobb626 committed Oct 29, 2023
1 parent 2a5dab1 commit 15e696d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Source/Common.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#pragma once

#define TRUE 1
#define FALSE 0

typedef UINT8 BOOLEAN;

typedef signed char INT8;
typedef signed short INT16;
typedef signed int INT32;
Expand All @@ -14,3 +9,8 @@ typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef unsigned int UINT32;
typedef unsigned long long UINT64;

#define TRUE 1
#define FALSE 0

typedef UINT8 BOOLEAN;

0 comments on commit 15e696d

Please sign in to comment.