PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
misc_hdck.c
1/*
2# _____ ___ ____ ___ ____
3# ____| | ____| | | |____|
4# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5#-----------------------------------------------------------------------
6# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7# Licenced under Academic Free License version 2.0
8# Review ps2sdk README & LICENSE files for further details.
9*/
10
11#include <atad.h>
12
13#include "libapa.h"
14#include "misc_hdck.h"
15
16int HdckUnlockHdd(int unit)
17{
18 unsigned char id[32];
19 int result;
20
21 if ((result = apaGetIlinkID(id)) == 0) {
22 result = sceAtaSecurityUnLock(unit, id);
23 }
24
25 return result;
26}