You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
332 B
C

#ifndef GUI_H
#define GUI_H
#include <stdio.h>
#include <windows.h>
#include <commctrl.h>
#include "resource.h"
#define STRING_SIZE 256
int nssm_gui(int, char *);
void centre_window(HWND);
int install(HWND);
int remove(HWND);
void browse(HWND);
INT_PTR CALLBACK install_dlg(HWND, UINT, WPARAM, LPARAM);
#endif