blob: 90658e60147943a13ba9e781f3ba5c0347e8e895 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_POWER_H
#define _VDSUITE_USER_POWER_H
#include_next <power.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Returns GPU clock frequency
*
* @return GPU clock frequency in Mhz
*/
int scePowerGetGpuClockFrequency(void);
/**
* Sets GPU clock frequency
*
* @param freq - Frequency to set in Mhz
*
* @return 0 on success, < 0 on error
*/
int scePowerSetGpuClockFrequency(int freq);
/**
* Sets wireless features usage
*
* @param enabled - SCE_TRUE to enable, SCE_FALSE to disable
*
* @return 0 on success, < 0 on error
*/
int scePowerSetUsingWireless(SceBool enabled);
/**
* Gets wireless features usage
*
* @return SCE_TRUE if enabled, SCE_FALSE otherwise
*/
int scePowerGetUsingWireless(void);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_USER_POWER_H */
|