Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
66
Server/ToolProject/AuthDBManager/AuthDef.h
Normal file
66
Server/ToolProject/AuthDBManager/AuthDef.h
Normal file
@@ -0,0 +1,66 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Table Schema Define
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef _AuthDBDef
|
||||
#define _AuthDBDef
|
||||
|
||||
#pragma pack(1)
|
||||
typedef struct _INSERT_AUTHUSER_TABLE
|
||||
{
|
||||
char AuthID[16]; // 아이디
|
||||
char AuthPW[16]; // 패스
|
||||
char Name[16]; // 이름
|
||||
char Sex; // 성별
|
||||
char Birth[11]; // 생일
|
||||
char ZipCode[12]; // 우편 번호
|
||||
char Address[80]; // 주소
|
||||
char Mobile[20]; // 휴대폰
|
||||
char Phone[20]; // 전화
|
||||
char Email[50]; // 이메일
|
||||
char Job[20]; // 직업
|
||||
char IDNumber[15]; // 주민등록 번호
|
||||
}INSERT_AUTHUSER_TABLE, *LPINSERT_AUTHUSER_TABLE;
|
||||
#pragma pack()
|
||||
|
||||
#pragma pack(1)
|
||||
typedef struct _SELECT_AUTHUSER_TABLE
|
||||
{
|
||||
unsigned long UID; // 아이디
|
||||
char AuthID[16]; // 아이디
|
||||
char AuthPW[16]; // 패스
|
||||
char Name[16]; // 이름
|
||||
char Sex; // 성별
|
||||
char Birth[11]; // 생일
|
||||
char ZipCode[12]; // 우편 번호
|
||||
char Address[80]; // 주소
|
||||
char Mobile[20]; // 휴대폰
|
||||
char Phone[20]; // 전화
|
||||
char Email[50]; // 이메일
|
||||
char Job[20]; // 직업
|
||||
char IDNumber[15]; // 주민등록 번호
|
||||
TIME Reg_Date; // 등록 일자
|
||||
}SELECT_AUTHUSER_TABLE, *LPSELECT_AUTHUSER_TABLE;
|
||||
#pragma pack()
|
||||
|
||||
#pragma pack(1)
|
||||
typedef struct _UPDATE_AUTHUSER_TABLE
|
||||
{
|
||||
unsigned long UID; // 아이디
|
||||
char AuthID[16]; // 아이디
|
||||
char AuthPW[16]; // 패스
|
||||
char Name[16]; // 이름
|
||||
char Sex; // 성별
|
||||
char Birth[11]; // 생일
|
||||
char ZipCode[12]; // 우편 번호
|
||||
char Address[80]; // 주소
|
||||
char Mobile[20]; // 휴대폰
|
||||
char Phone[20]; // 전화
|
||||
char Email[50]; // 이메일
|
||||
char Job[20]; // 직업
|
||||
char IDNumber[15]; // 주민등록 번호
|
||||
}UPDATE_AUTHUSER_TABLE, *LPUPDATE_AUTHUSER_TABLE;
|
||||
#pragma pack()
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user