VirtualBox

source: vbox/trunk/src/VBox/GuestHost/OpenGL/include/cr_process.h@ 52002

Last change on this file since 52002 was 15532, checked in by vboxsync, 16 years ago

crOpenGL: export to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 907 bytes
Line 
1/* Copyright (c) 2001, Stanford University
2 * All rights reserved
3 *
4 * See the file LICENSE.txt for information on redistributing this software.
5 */
6
7#ifndef CR_PROCESS_H
8#define CR_PROCESS_H
9
10#ifdef WINDOWS
11#define WIN32_LEAN_AND_MEAN
12#include <windows.h>
13#endif
14
15#include <iprt/cdefs.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/*
22 * Process ID type
23 */
24#ifdef WINDOWS
25typedef HANDLE CRpid;
26#else
27typedef unsigned long CRpid;
28#endif
29
30
31extern DECLEXPORT(void) crSleep( unsigned int seconds );
32
33extern DECLEXPORT(void) crMsleep( unsigned int msec );
34
35extern DECLEXPORT(CRpid) crSpawn( const char *command, const char *argv[] );
36
37extern DECLEXPORT(void) crKill( CRpid pid );
38
39extern DECLEXPORT(void) crGetProcName( char *name, int maxLen );
40
41extern DECLEXPORT(void) crGetCurrentDir( char *dir, int maxLen );
42
43extern DECLEXPORT(CRpid) crGetPID(void);
44
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif /* CR_PROCESS_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette