summaryrefslogtreecommitdiff
path: root/frontends/windows/localhistory.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-19 11:32:17 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-19 11:32:17 +0000
commit0f69965805dda51cc7b6ea8404226d5f75a3b533 (patch)
treef93ff08e80b746c7712028fa26d84df051ba53ad /frontends/windows/localhistory.h
parent8ddb9df3778abadc095505d5711b08e9cd9f270a (diff)
downloadnetsurf-0f69965805dda51cc7b6ea8404226d5f75a3b533.tar.gz
netsurf-0f69965805dda51cc7b6ea8404226d5f75a3b533.tar.bz2
clean up some of the doxygen generation warnings
Diffstat (limited to 'frontends/windows/localhistory.h')
-rw-r--r--frontends/windows/localhistory.h22
1 files changed, 18 insertions, 4 deletions
diff --git a/frontends/windows/localhistory.h b/frontends/windows/localhistory.h
index b0ad07491..eed417f28 100644
--- a/frontends/windows/localhistory.h
+++ b/frontends/windows/localhistory.h
@@ -16,17 +16,31 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _NETSURF_WINDOWS_LOCALHISTORY_H_
-#define _NETSURF_WINDOWS_LOCALHISTORY_H_
+#ifndef NETSURF_WINDOWS_LOCALHISTORY_H
+#define NETSURF_WINDOWS_LOCALHISTORY_H
struct nsws_localhistory;
-void nsws_localhistory_open(struct gui_window *gw);
+/**
+ * Close win32 localhistory window.
+ *
+ * \param gw The win32 gui window to close local history for.
+ */
void nsws_localhistory_close(struct gui_window *gw);
-/* creates localhistory window */
+/**
+ * creates localhistory window
+ *
+ * \param gw The win32 gui window to create a local history for.
+ */
struct nsws_localhistory *nsws_window_create_localhistory(struct gui_window *gw);
+/**
+ * Create the win32 window class
+ *
+ * \param hinstance The application instance to create the window class under
+ * \return NSERROR_OK on success else error code.
+ */
nserror nsws_create_localhistory_class(HINSTANCE hinstance);
#endif