mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-28 06:55:27 +00:00
Add Windows specific files.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@225 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
20
windows/loaddrv.h
Normal file
20
windows/loaddrv.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef LOADDRV_H
|
||||
#define LOADDRV_H
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#define OKAY 0
|
||||
#define UNEXPECTED_ERROR 9999
|
||||
|
||||
//prototypes
|
||||
DWORD LoadDriverInit(void);
|
||||
void LoadDriverCleanup(void);
|
||||
DWORD DriverInstall(LPSTR, LPSTR);
|
||||
DWORD DriverStart(LPSTR);
|
||||
DWORD DriverStop(LPSTR);
|
||||
DWORD DriverRemove(LPSTR);
|
||||
DWORD DriverStatus(LPSTR);
|
||||
DWORD DriverStartType(LPSTR, DWORD);
|
||||
#endif //LOADDRV_H
|
||||
|
||||
|
Reference in New Issue
Block a user