| OLD | NEW |
| 1 /* TPM Device Driver Library for the TPM-Emulator package | 1 /* Software-based Trusted Platform Module (TPM) Emulator |
| 2 * Copyright (C) 2004 Mario Strasser <mast@gmx.net>, | 2 * Copyright (C) 2004-2010 Mario Strasser <mast@gmx.net> |
| 3 * Swiss Federal Institute of Technology (ETH) Zurich | |
| 4 * | 3 * |
| 5 * This module is free software; you can redistribute it and/or modify | 4 * This module is free software; you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License as published | 5 * it under the terms of the GNU General Public License as published |
| 7 * by the Free Software Foundation; either version 2 of the License, | 6 * by the Free Software Foundation; either version 2 of the License, |
| 8 * or (at your option) any later version. | 7 * or (at your option) any later version. |
| 9 * | 8 * |
| 10 * This module is distributed in the hope that it will be useful, | 9 * This module is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 14 * | 13 * |
| 15 * $Id$ | 14 * $Id: tddl.h 364 2010-02-11 10:24:45Z mast $ |
| 16 */ | 15 */ |
| 17 | 16 |
| 18 #ifndef _TDDL_H_ | 17 #ifndef _TDDL_H_ |
| 19 #define _TDDL_H_ | 18 #define _TDDL_H_ |
| 20 | 19 |
| 21 #include <stdint.h> | 20 #include <stdint.h> |
| 22 | 21 |
| 23 /* | 22 /* |
| 24 * The following types and functions are specified in the | 23 * The following types and functions are specified in the |
| 25 * TCPA Software Stack (TSS) Specification [TSS_Spec]. | 24 * TCPA Software Stack (TSS) Specification [TSS_Spec]. |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 */ | 194 */ |
| 196 TSS_RESULT Tddli_PowerManagementControl(TSS_BOOL SendPowerManager, | 195 TSS_RESULT Tddli_PowerManagementControl(TSS_BOOL SendPowerManager, |
| 197 UINT32 DriverManagesPowerStates); | 196 UINT32 DriverManagesPowerStates); |
| 198 | 197 |
| 199 #ifdef __cplusplus | 198 #ifdef __cplusplus |
| 200 } | 199 } |
| 201 #endif | 200 #endif |
| 202 | 201 |
| 203 #endif /* _TDDL_H_ */ | 202 #endif /* _TDDL_H_ */ |
| 204 | 203 |
| OLD | NEW |