Sponsored Content
Top Forums Programming C coding for Screenshot capture Post 302344766 by Corona688 on Monday 17th of August 2009 01:25:05 PM
Old 08-17-2009
First off, you're asking in the wrong forum since Windows is not UNIX. Second, you're going to have a very hard time doing so since that would mean arranging to have your program run before a login occurs...
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

can I use this coding

I apologise because I had pasted this question in the newbies forum first (because i am a bit of a newbie) but thought it might be better suited in here if i have to sepearate parameters can I use this syntax especially the or part (||) and is this correct if (6 Replies)
Discussion started by: w33man
6 Replies

2. Programming

where i get coding for networking in C?

hai, this is nagalakshmi. i have a question in Unix C. i need the coding for the file transfer and simulation of protocols in C where i get the coding? (2 Replies)
Discussion started by: xpertlakshmi
2 Replies

3. What is on Your Mind?

Movie Screenshot Contest - Bits to be won!

I propose a little game, I post a bunch of images from random movies out there and people try to identify the name of the character and the movie. Each correct answer earns a point, at the end of the contest I'll give some Bits to those with the most points. The rules: I'll post only a few... (35 Replies)
Discussion started by: Smiling Dragon
35 Replies

4. Programming

Help for coding this programme

for a floating-point array x whose size is n, find the geometric mean.. GM =n x1.x2.x3...xn (2 Replies)
Discussion started by: allyjaah
2 Replies

5. Shell Programming and Scripting

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (1 Reply)
Discussion started by: crazydude80
1 Replies

6. Windows & DOS: Issues & Discussions

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (2 Replies)
Discussion started by: crazydude80
2 Replies

7. Shell Programming and Scripting

Shell or Perl Loop Screenshot URLs

I am trying to capture screenshots from a huge list of URLs. I am able to manually capture images of individual pages; that is, I simply run the following command to get a screenshot of Foo.com $ python /path/to/screencapture.sh http://www.foo.com I want to modify the script so that instead of... (2 Replies)
Discussion started by: chipperuga
2 Replies

8. Shell Programming and Scripting

Shell Script to Capture a Screenshot

Hi All, Suppose I want to take a screenshot of a website say Google and save that image. How should I do it? I tried wget with this but of no help. It just makes a particular file in jpeg format but on opening the same it says corrupted. Although I can edit the jpeg as an HTML file. wget... (15 Replies)
Discussion started by: ankur328
15 Replies
getlogin(2)							System Calls Manual						       getlogin(2)

NAME
getlogin, getlogin_r, setlogin - Gets and sets login name SYNOPSIS
#include <unistd.h> char *getlogin(void); int getlogin_r( char *name, size_t len); int setlogin( char *name); The following function does not conform to current standards and is supported only for backward compatibility: int getlogin_r(char *name, int len); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: getlogin(), getlogin_r(): XSH5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Points to the login name. Specifies the length of the buffer pointed to by name. DESCRIPTION
The getlogin() function returns the login name of the user associated with the current session. The name is normally associated with a login shell at the time a session is created, and is inherited by all processes descended from the login shell. (This is true even if some of those processes assume another user ID, for example when the su command is used.) The setlogin() function sets the login name of the user associated with the current session to name. This call is restricted to the supe- ruser, and is normally used only when a new session is being created on behalf of the named user (for example, at login time, or when a remote shell is invoked). The getlogin_r() function is the reentrant version of getlogin(). Upon successful completion, the login name is stored in name. RETURN VALUES
Upon successful completion, the getlogin() function returns a pointer to a null-terminated string in a static buffer or a null pointer if the user's login name cannot be found. If getlogin() fails, a null pointer is returned, and errno is set to indicate the error. Upon successful completion, the setlogin() function returns a value of 0 (zero). If setlogin() fails, then a value of -1 is returned and an error code is placed in errno. Upon successful completion, the getlogin_r() function returns a value of 0 (zero). Otherwise, an error number is returned. [Tru64 UNIX] Upon successful completion, the obsolete version of the getlogin_r() function returns a value of 0 (zero). Otherwise, -1 is returned and errno is set to indicate the error. ERRORS
If the getlogin(), getlogin_r(), or setlogin() function fails, errno may be set to one of the following values: [Tru64 UNIX] The name parameter gave an invalid address. [Tru64 UNIX] The name parameter pointed to a string that was too long. [Tru64 UNIX] Login names are limited to 64 characters, as specified by MAXLOGNAME (which is defined in sys/user.h). However, this name limit must be enabled in the kernel at boot time by explicitly setting the generic subsystem's login_name_max attribute to 64. For backward compatibility reasons, 12 is the default value of the login_name_max attribute. An additional value for a setlogin() failure is the following: [Tru64 UNIX] The caller tried to set the login name and was not the supe- ruser. RELATED INFORMATION
Commands: su(1) Functions: setsid(2) Standards: standards(5) delim off getlogin(2)
All times are GMT -4. The time now is 12:28 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy