Changeset 58132 in vbox for trunk/src/VBox/Devices/Serial
- Timestamp:
- Oct 9, 2015 12:09:37 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103230
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DevSerial.cpp
r57358 r58132 822 822 823 823 /** 824 * @callback_method_ tmpl{FNTMTIMERDEV, Fifo timer function.}824 * @callback_method_impl{FNTMTIMERDEV, Fifo timer function.} 825 825 */ 826 826 static DECLCALLBACK(void) serialFifoTimer(PPDMDEVINS pDevIns, PTMTIMER pTimer, void *pvUser) … … 836 836 837 837 /** 838 * @callback_method_ tmpl{FNTMTIMERDEV, Transmit timer function.}838 * @callback_method_impl{FNTMTIMERDEV, Transmit timer function.} 839 839 * 840 840 * Just retry to transmit a character. … … 900 900 901 901 /** 902 * @callback_method_ tmpl{FNSSMDEVLIVEEXEC}902 * @callback_method_impl{FNSSMDEVLIVEEXEC} 903 903 */ 904 904 static DECLCALLBACK(int) serialLiveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uPass) … … 912 912 913 913 /** 914 * @callback_method_ tmpl{FNSSMDEVSAVEEXEC}914 * @callback_method_impl{FNSSMDEVSAVEEXEC} 915 915 */ 916 916 static DECLCALLBACK(int) serialSaveExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM) … … 954 954 955 955 /** 956 * @callback_method_ tmpl{FNSSMDEVLOADEXEC}956 * @callback_method_impl{FNSSMDEVLOADEXEC} 957 957 */ 958 958 static DECLCALLBACK(int) serialLoadExec(PPDMDEVINS pDevIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass) … … 1075 1075 1076 1076 /** 1077 * @interface_method_impl{PDMIBASE, 1077 * @interface_method_impl{PDMIBASE,pfnQueryInterface} 1078 1078 */ 1079 1079 static DECLCALLBACK(void *) serialQueryInterface(PPDMIBASE pInterface, const char *pszIID) … … 1089 1089 1090 1090 /** 1091 * @interface_method_impl{PDMDEVREG, 1091 * @interface_method_impl{PDMDEVREG,pfnRelocate} 1092 1092 */ 1093 1093 static DECLCALLBACK(void) serialRelocate(PPDMDEVINS pDevIns, RTGCINTPTR offDelta) … … 1100 1100 1101 1101 /** 1102 * @interface_method_impl{PDMDEVREG, 1102 * @interface_method_impl{PDMDEVREG,pfnReset} 1103 1103 */ 1104 1104 static DECLCALLBACK(void) serialReset(PPDMDEVINS pDevIns) … … 1135 1135 1136 1136 /** 1137 * @interface_method_impl{PDMDEVREG, 1137 * @interface_method_impl{PDMDEVREG,pfnDestruct} 1138 1138 */ 1139 1139 static DECLCALLBACK(int) serialDestruct(PPDMDEVINS pDevIns) … … 1151 1151 1152 1152 /** 1153 * @interface_method_impl{PDMDEVREG, 1153 * @interface_method_impl{PDMDEVREG,pfnConstruct} 1154 1154 */ 1155 1155 static DECLCALLBACK(int) serialConstruct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
Note:
See TracChangeset
for help on using the changeset viewer.